import { ExtractPropTypes, PropType } from 'vue'; export type SkeletonVariant = 'text' | 'circular' | 'rectangular' | 'rounded'; export type SkeletonAnimation = 'wave' | 'pulse' | 'none'; export declare const skeletonProps: { readonly variant: { readonly type: PropType; readonly default: "text"; }; readonly animation: { readonly type: PropType; readonly default: "wave"; }; readonly width: { readonly type: PropType; readonly default: undefined; }; readonly height: { readonly type: PropType; readonly default: undefined; }; readonly rounded: { readonly type: PropType; readonly default: undefined; }; readonly loading: { readonly type: BooleanConstructor; readonly default: true; }; readonly lines: { readonly type: NumberConstructor; readonly default: 1; }; }; export type SkeletonProps = ExtractPropTypes;