import type { PropType, ExtractPropTypes, StyleValue } from 'vue';
import type { Arrayable, ComponentSize } from '../../_utils/types';
export declare const _props: {
    size: {
        type: PropType<ComponentSize>;
        validator: (val: string) => boolean;
    };
    type: {
        type: PropType<"default" | "simple">;
        default: string;
    };
    description: {
        type: StringConstructor;
    };
    class: {
        type: PropType<string | Arrayable<Record<string, boolean>>>;
    };
    style: {
        type: PropType<StyleValue>;
    };
};
export type EmptyProps = ExtractPropTypes<typeof _props>;
