import { PropType } from 'vue';
import type { Size } from './interface';
export declare const Props: {
    readonly modelValue: StringConstructor;
    readonly label: StringConstructor;
    readonly name: StringConstructor;
    readonly disabled: BooleanConstructor;
    readonly border: BooleanConstructor;
    readonly size: {
        readonly type: PropType<Size>;
        readonly default: () => Size;
        readonly validator: (v: Size) => boolean;
    };
};
