export declare class SlSkeletonButton {
    /**
     * Width of the button skeleton
     * If number is provided, it will be treated as pixels.
     * If string is provided, it will be used as-is (supports any CSS length unit).
     * @type {number | string}
     * @default 160
     */
    width: number | string;
    /**
     * Height of the button skeleton
     * If number is provided, it will be treated as pixels.
     * If string is provided, it will be used as-is (supports any CSS length unit).
     * @type {number | string}
     * @default 48
     */
    height: number | string;
    /**
     * Whether the button should have rounded corners (pill shape) or square corners
     * @type {boolean}
     * @default true
     */
    rounded: boolean;
    /**
     * Whether the skeleton should display the shimmer animation
     * @type {boolean}
     * @default true
     */
    animated: boolean;
    render(): any;
}
