import type { ExtractPropTypes, __ExtractPublicPropTypes } from 'vue'; export type InputAutoSize = { minRows?: number; maxRows?: number; } | boolean; export declare const inputProps: { readonly inputmode: import("@hd-front-end/element-plus/es/utils").EpPropFinalized, unknown, unknown, undefined, boolean>; readonly name: StringConstructor; readonly ariaLabel: StringConstructor; readonly id: import("@hd-front-end/element-plus/es/utils").EpPropFinalized; readonly size: { readonly type: ExtractPropTypes; readonly required: false; readonly validator: ((val: unknown) => boolean) | undefined; __epPropKey: true; }; readonly disabled: BooleanConstructor; readonly modelValue: import("@hd-front-end/element-plus/es/utils").EpPropFinalized, unknown, unknown, "", boolean>; readonly maxlength: { readonly type: ExtractPropTypes; readonly required: false; readonly validator: ((val: unknown) => boolean) | undefined; __epPropKey: true; }; readonly minlength: { readonly type: ExtractPropTypes; readonly required: false; readonly validator: ((val: unknown) => boolean) | undefined; __epPropKey: true; }; readonly type: import("@hd-front-end/element-plus/es/utils").EpPropFinalized; readonly resize: { readonly type: ExtractPropTypes; readonly required: false; readonly validator: ((val: unknown) => boolean) | undefined; __epPropKey: true; }; readonly autosize: import("@hd-front-end/element-plus/es/utils").EpPropFinalized, unknown, unknown, false, boolean>; readonly autocomplete: import("@hd-front-end/element-plus/es/utils").EpPropFinalized, unknown, unknown, "off", boolean>; readonly formatter: { readonly type: ExtractPropTypes; readonly required: false; readonly validator: ((val: unknown) => boolean) | undefined; __epPropKey: true; }; readonly parser: { readonly type: ExtractPropTypes; readonly required: false; readonly validator: ((val: unknown) => boolean) | undefined; __epPropKey: true; }; readonly placeholder: { readonly type: ExtractPropTypes; readonly required: false; readonly validator: ((val: unknown) => boolean) | undefined; __epPropKey: true; }; readonly form: { readonly type: ExtractPropTypes; readonly required: false; readonly validator: ((val: unknown) => boolean) | undefined; __epPropKey: true; }; readonly readonly: BooleanConstructor; readonly clearable: BooleanConstructor; readonly clearIcon: { readonly type: ExtractPropTypes; readonly required: false; readonly validator: ((val: unknown) => boolean) | undefined; __epPropKey: true; }; readonly showPassword: BooleanConstructor; readonly showWordLimit: BooleanConstructor; readonly suffixIcon: { readonly type: ExtractPropTypes; readonly required: false; readonly validator: ((val: unknown) => boolean) | undefined; __epPropKey: true; }; readonly prefixIcon: { readonly type: ExtractPropTypes; readonly required: false; readonly validator: ((val: unknown) => boolean) | undefined; __epPropKey: true; }; readonly containerRole: import("@hd-front-end/element-plus/es/utils").EpPropFinalized; readonly tabindex: import("@hd-front-end/element-plus/es/utils").EpPropFinalized; readonly validateEvent: import("@hd-front-end/element-plus/es/utils").EpPropFinalized; readonly inputStyle: import("@hd-front-end/element-plus/es/utils").EpPropFinalized, unknown, unknown, () => import("@hd-front-end/element-plus/es/utils").Mutable<{}>, boolean>; readonly autofocus: BooleanConstructor; readonly rows: import("@hd-front-end/element-plus/es/utils").EpPropFinalized; }; export type InputProps = ExtractPropTypes; export type InputPropsPublic = __ExtractPublicPropTypes; export declare const inputEmits: { "update:modelValue": (value: string) => boolean; input: (value: string) => boolean; change: (value: string) => boolean; focus: (evt: FocusEvent) => boolean; blur: (evt: FocusEvent) => boolean; clear: () => boolean; mouseleave: (evt: MouseEvent) => boolean; mouseenter: (evt: MouseEvent) => boolean; keydown: (evt: KeyboardEvent | Event) => boolean; compositionstart: (evt: CompositionEvent) => boolean; compositionupdate: (evt: CompositionEvent) => boolean; compositionend: (evt: CompositionEvent) => boolean; }; export type InputEmits = typeof inputEmits;