export declare class SlSkeletonDropdown {
    /**
     * Width of the dropdown field 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 '300px'
     */
    width: number | string;
    /**
     * Whether to display the text skeleton part (label)
     * @type {boolean}
     * @default true
     */
    showText: boolean;
    /**
     * Whether the skeleton should display the shimmer animation
     * @type {boolean}
     * @default true
     */
    animated: boolean;
    render(): any;
}
