import { ExtractPropTypes } from 'vue';
export declare const inputProps: {
    size: {
        type: import('vue').PropType<import('..').SizeT>;
    };
    round: {
        type: import('vue').PropType<import('..').RoundT>;
    };
    color: {
        type: import('vue').PropType<import('..').Color2T>;
        default: string;
    };
    variant: {
        type: import('vue').PropType<import('..').VariantT>;
        default: string;
    };
    /**
     * 输入框的值
     * v-model
     */
    modelValue: {
        type: (NumberConstructor | StringConstructor)[];
    };
    /**
     * 输入框的默认值
     * 非受控
     */
    defaultValue: {
        type: (NumberConstructor | StringConstructor)[];
    };
    type: {
        type: import('vue').PropType<"text" | "password">;
        default: string;
    };
    placeholder: {
        type: StringConstructor;
    };
    inputId: {
        type: StringConstructor;
    };
    disabled: {
        type: BooleanConstructor;
    };
    readonly: {
        type: BooleanConstructor;
    };
    clearable: {
        type: BooleanConstructor;
    };
    minLength: {
        type: NumberConstructor;
    };
    maxLength: {
        type: NumberConstructor;
    };
    getLength: {
        type: import('vue').PropType<(val: string) => number>;
    };
    inputOnOutlimit: {
        type: BooleanConstructor;
        default: boolean;
    };
    format: {
        type: import('vue').PropType<(value: string) => string>;
    };
    validate: {
        type: import('vue').PropType<(value: string) => boolean>;
    };
    valueOnInvalidChange: {
        type: import('vue').PropType<(inputValue: string, lastValidInputValue: string) => string>;
    };
    showPasswordEvent: {
        type: import('vue').PropType<"click" | "pointerdown">;
        default: string;
    };
    autoWidth: {
        type: BooleanConstructor;
    };
    passwordPlaceholder: {
        type: StringConstructor;
        default: string;
    };
};
export type InputPropsT = ExtractPropTypes<typeof inputProps>;
