import type { PropType, ExtractPropTypes } from 'vue';
import type { SkeletonSizeType } from './interface';
export declare const Props: {
    readonly rounded: {
        readonly type: BooleanConstructor;
        readonly default: () => boolean;
    };
    readonly animated: {
        readonly type: BooleanConstructor;
        readonly default: () => boolean;
    };
    readonly circled: {
        readonly type: BooleanConstructor;
        readonly default: () => boolean;
    };
    readonly rows: {
        readonly type: NumberConstructor;
        readonly default: () => number;
    };
    readonly loading: {
        readonly type: BooleanConstructor;
        readonly default: () => boolean;
    };
    readonly size: {
        readonly type: PropType<SkeletonSizeType>;
        readonly default: () => SkeletonSizeType;
        readonly validator: (val: SkeletonSizeType) => boolean;
    };
};
export declare type SkeletonPropsType = ExtractPropTypes<typeof Props>;
