export type InputType = 'text' | 'password' | 'color' | 'date' | 'email' | 'number' | 'range' | 'search' | 'tel' | 'time' | 'url' | 'file'; export interface InputProps { type?: InputType; label?: string; hint?: string; limit?: number | string; expand?: boolean; placeholder?: string; required?: boolean; modelValue?: string | number; readonly?: boolean; focus?: boolean; errors?: string[]; accept?: string; multiple?: boolean; min?: number; max?: number; disabled?: boolean; } type __VLS_Props = InputProps; type __VLS_ModelProps = { modelValue?: string | number; }; type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps; declare var __VLS_1: {}, __VLS_9: {}, __VLS_11: { inputId: string; }, __VLS_13: {}, __VLS_15: {}; type __VLS_Slots = {} & { before?: (props: typeof __VLS_1) => any; } & { start?: (props: typeof __VLS_9) => any; } & { __internal_replace_input?: (props: typeof __VLS_11) => any; } & { end?: (props: typeof __VLS_13) => any; } & { after?: (props: typeof __VLS_15) => any; }; declare const __VLS_base: import('vue').DefineComponent<__VLS_PublicProps, { focus: () => void; }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, { "update:modelValue": (value: string | number) => any; }, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{ "onUpdate:modelValue"?: ((value: string | number) => any) | undefined; }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>; declare const __VLS_export: __VLS_WithSlots; declare const _default: typeof __VLS_export; export default _default; type __VLS_WithSlots = T & { new (): { $slots: S; }; };