import { ExtractPropTypes } from 'vue'; export declare const skeletonProps: { readonly loading: { readonly type: BooleanConstructor; readonly default: true; }; readonly animated: { readonly type: BooleanConstructor; readonly default: true; }; readonly rows: { readonly type: NumberConstructor; readonly default: 5; }; readonly circle: { readonly type: BooleanConstructor; readonly default: false; }; readonly icon: { readonly type: StringConstructor; readonly default: ""; }; readonly firstWidth: { readonly type: StringConstructor; readonly default: "40%"; }; readonly lastWidth: { readonly type: StringConstructor; readonly default: "60%"; }; readonly throttle: { readonly type: NumberConstructor; readonly default: 0; }; }; export type SkeletonProps = ExtractPropTypes;