export declare class SlSkeletonSwitch {
    /**
     * Width of the text label 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 '120px'
     */
    textWidth: number | string;
    /**
     * Whether to display the text skeleton part
     * @type {boolean}
     * @default true
     */
    showText: boolean;
    /**
     * Whether to reverse the layout (text before switch)
     * @type {boolean}
     * @default false
     */
    reverse: boolean;
    /**
     * Whether the skeleton should display the shimmer animation
     * @type {boolean}
     * @default true
     */
    animated: boolean;
    render(): any;
}
