import type { ExtractPropTypes } from 'vue'; export declare const inputProps: { readonly size: { type: PropType<"default" | "small" | "large">; }; readonly disabled: { readonly type: BooleanConstructor; readonly default: undefined; }; readonly modelValue: { readonly type: PropType; readonly default: ""; readonly required: false; }; readonly autocomplete: { readonly type: StringConstructor; readonly default: "off"; }; readonly placeholder: { readonly type: StringConstructor; readonly default: "请输入"; }; readonly form: { readonly type: StringConstructor; readonly default: ""; }; readonly readonly: { readonly type: BooleanConstructor; readonly default: false; }; readonly clearable: { readonly type: BooleanConstructor; readonly default: false; }; readonly showPassword: { readonly type: BooleanConstructor; readonly default: false; }; readonly showWordLimit: { readonly type: BooleanConstructor; readonly default: false; }; readonly suffixIcon: { readonly type: PropType; readonly default: ""; }; readonly prefixIcon: { readonly type: PropType; readonly default: ""; }; readonly tabindex: { readonly type: PropType; }; readonly innerStyle: { readonly type: PropType; readonly default: () => import("element-ultra/utils").Mutable<{}>; }; readonly label: { type: StringConstructor; }; readonly field: { type: StringConstructor; }; readonly tips: { type: StringConstructor; }; readonly span: { type: PropType; }; readonly required: { type: BooleanConstructor; }; }; export type InputProps = ExtractPropTypes; export declare const inputEmits: { "update:modelValue": (value: string) => any; input: (value: string) => any; change: (value: string) => any; focus: (evt: FocusEvent) => boolean; blur: (evt: FocusEvent) => boolean; clear: () => boolean; mouseleave: (evt: MouseEvent) => boolean; mouseenter: (evt: MouseEvent) => boolean; keydown: (evt: KeyboardEvent) => boolean; compositionstart: (evt: CompositionEvent) => boolean; compositionupdate: (evt: CompositionEvent) => boolean; compositionend: (evt: CompositionEvent) => boolean; }; export type InputEmits = typeof inputEmits;