import { TdInputProps } from './type';
import { PropType } from 'vue';
declare const _default: {
    align: {
        type: PropType<"center" | "left" | "right">;
        default: "center" | "left" | "right";
        validator(val: TdInputProps['align']): boolean;
    };
    allowInputOverMax: BooleanConstructor;
    autoWidth: BooleanConstructor;
    autocomplete: {
        type: StringConstructor;
        default: any;
    };
    autofocus: BooleanConstructor;
    clearable: BooleanConstructor;
    disabled: BooleanConstructor;
    format: {
        type: PropType<import("./type").InputFormatType>;
    };
    inputClass: {
        type: PropType<import("..").ClassName>;
    };
    label: {
        type: PropType<string | ((h: typeof import("vue").h) => import("..").SlotReturnValue)>;
    };
    maxcharacter: {
        type: NumberConstructor;
    };
    maxlength: {
        type: NumberConstructor;
    };
    name: {
        type: StringConstructor;
        default: string;
    };
    placeholder: {
        type: StringConstructor;
        default: any;
    };
    prefixIcon: {
        type: PropType<(h: typeof import("vue").h) => import("..").SlotReturnValue>;
    };
    readonly: BooleanConstructor;
    showClearIconOnEmpty: BooleanConstructor;
    showLimitNumber: BooleanConstructor;
    size: {
        type: PropType<import("..").SizeEnum>;
        default: import("..").SizeEnum;
        validator(val: TdInputProps['size']): boolean;
    };
    status: {
        type: PropType<"error" | "default" | "success" | "warning">;
        default: "error" | "default" | "success" | "warning";
        validator(val: TdInputProps['status']): boolean;
    };
    suffix: {
        type: PropType<string | ((h: typeof import("vue").h) => import("..").SlotReturnValue)>;
    };
    suffixIcon: {
        type: PropType<(h: typeof import("vue").h) => import("..").SlotReturnValue>;
    };
    tips: {
        type: PropType<string | ((h: typeof import("vue").h) => import("..").SlotReturnValue)>;
    };
    type: {
        type: PropType<"number" | "search" | "password" | "url" | "hidden" | "text" | "submit" | "tel">;
        default: "number" | "search" | "password" | "url" | "hidden" | "text" | "submit" | "tel";
        validator(val: TdInputProps['type']): boolean;
    };
    value: {
        type: PropType<string>;
        default: string;
    };
    modelValue: {
        type: PropType<string>;
        default: string;
    };
    defaultValue: {
        type: PropType<string>;
        default: string;
    };
    onBlur: PropType<(value: string, context: {
        e: FocusEvent;
    }) => void>;
    onChange: PropType<(value: string, context?: {
        e?: MouseEvent | CompositionEvent | InputEvent;
        trigger: "input" | "clear" | "initial";
    }) => void>;
    onClear: PropType<(context: {
        e: MouseEvent;
    }) => void>;
    onClick: PropType<(context: {
        e: MouseEvent;
    }) => void>;
    onCompositionend: PropType<(value: string, context: {
        e: CompositionEvent;
    }) => void>;
    onCompositionstart: PropType<(value: string, context: {
        e: CompositionEvent;
    }) => void>;
    onEnter: PropType<(value: string, context: {
        e: KeyboardEvent;
    }) => void>;
    onFocus: PropType<(value: string, context: {
        e: FocusEvent;
    }) => void>;
    onKeydown: PropType<(value: string, context: {
        e: KeyboardEvent;
    }) => void>;
    onKeypress: PropType<(value: string, context: {
        e: KeyboardEvent;
    }) => void>;
    onKeyup: PropType<(value: string, context: {
        e: KeyboardEvent;
    }) => void>;
    onMouseenter: PropType<(context: {
        e: MouseEvent;
    }) => void>;
    onMouseleave: PropType<(context: {
        e: MouseEvent;
    }) => void>;
    onPaste: PropType<(context: {
        e: ClipboardEvent;
        pasteValue: string;
    }) => void>;
    onValidate: PropType<(context: {
        error?: "exceed-maximum" | "below-minimum";
    }) => void>;
    onWheel: PropType<(context: {
        e: WheelEvent;
    }) => void>;
};
export default _default;
