import type { Type } from './interface';
import type { DefineComponent, PropType, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps } from 'vue';
declare const _sfc_main: DefineComponent<{
    readonly type: {
        readonly type: PropType<Type>;
        readonly default: () => Type;
        readonly validator: (v: Type) => boolean;
    };
    readonly size: {
        readonly type: StringConstructor;
        readonly default: () => string;
    };
    readonly block: BooleanConstructor;
    readonly color: StringConstructor;
}, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, Record<string, any>, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<{
    readonly type?: unknown;
    readonly size?: unknown;
    readonly block?: unknown;
    readonly color?: unknown;
} & {
    type: Type;
    size: string;
    block: boolean;
} & {
    color?: string | undefined;
}>, {
    type: Type;
    size: string;
    block: boolean;
}>;
export default _sfc_main;
