import { PropType } from 'vue';
import type { Type } from './interface';
export declare const Props: {
    readonly type: {
        readonly type: PropType<Type>;
        readonly default: () => Type;
        readonly validator: (v: Type) => boolean;
    };
    readonly size: {
        readonly type: StringConstructor;
        readonly default: () => string;
    };
    readonly color: StringConstructor;
};
