export interface SkeletonProps { /** Pass a pixel value for circular and rectangular variants */ height?: string | number; /** Either text, circular, or rectangular */ variant?: SkeletonVariant; /** Pass a pixel value for any variant */ width?: string | number; } export declare enum SkeletonVariants { Text = "text", Circular = "circular", Rectangular = "rectangular" } export type SkeletonVariant = `${SkeletonVariants}`; declare const _default: typeof __VLS_export; export default _default; declare const __VLS_export: __VLS_WithSlots & Readonly<{}>, { variant: SkeletonVariant; height: string | number; width: string | number; }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, { default?: (props: {}) => any; }>; type __VLS_WithSlots = T & { new (): { $slots: S; }; };