import { ExtractPropTypes, PropType } from 'vue'; export declare const inputProps: { modelValue: { type: PropType; default: string; }; type: { type: PropType; default: string; }; placeholder: StringConstructor; disabled: { type: PropType; default: boolean; }; readonly: { type: PropType; default: boolean; }; clearable: { type: PropType; default: boolean; }; showPassword: { type: PropType; default: boolean; }; label: { type: PropType; }; }; export declare const inputEmits: { 'update:modelValue': (value: string) => boolean; input: (value: string) => boolean; change: (value: string) => boolean; focus: (e: FocusEvent) => boolean; blur: (e: FocusEvent) => boolean; clear: () => boolean; }; export declare type InputProps = Partial>; export declare type InputEmits = typeof inputEmits;