import type Skeleton from './skeleton.vue'; import type { ExtractPropTypes } from 'vue'; import type { ThrottleType } from 'element-plus/es/hooks'; export declare const skeletonProps: { readonly animated: import("element-plus/es/utils").EpPropFinalized; readonly count: import("element-plus/es/utils").EpPropFinalized; readonly rows: import("element-plus/es/utils").EpPropFinalized; readonly loading: import("element-plus/es/utils").EpPropFinalized; readonly throttle: { readonly type: import("vue").PropType number | { leading?: number; trailing?: number; initVal?: boolean; }) | (() => ThrottleType) | ((new (...args: any[]) => number | { leading?: number; trailing?: number; initVal?: boolean; }) | (() => ThrottleType))[], unknown, unknown>>; readonly required: false; readonly validator: ((val: unknown) => boolean) | undefined; __epPropKey: true; }; }; export type SkeletonProps = ExtractPropTypes; export type SkeletonInstance = InstanceType & unknown;