import type { XyControlStatus, XyControlVariant, XySize } from "../core"; import type { XyInputClassNames, XyInputExpose, XyInputStyles, XyInputType } from "./types"; type __VLS_Props = { allowClear?: boolean; autocomplete?: string; autofocus?: boolean; classNames?: XyInputClassNames; disabled?: boolean; id?: string; inputReadonly?: boolean; maxlength?: number; minlength?: number; modelValue?: string; name?: string; placeholder?: string; readonly?: boolean; showCount?: boolean; size?: XySize; status?: XyControlStatus; styles?: XyInputStyles; type?: XyInputType; variant?: XyControlVariant; }; declare var __VLS_1: {}, __VLS_8: {}; type __VLS_Slots = {} & { prefix?: (props: typeof __VLS_1) => any; } & { suffix?: (props: typeof __VLS_8) => any; }; declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, XyInputExpose, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { input: (value: string, event: Event) => any; clear: () => any; blur: (event: FocusEvent) => any; change: (value: string, event: Event) => any; focus: (event: FocusEvent) => any; pressEnter: (event: KeyboardEvent) => any; "update:modelValue": (value: string) => any; }, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{ onInput?: ((value: string, event: Event) => any) | undefined; onClear?: (() => any) | undefined; onBlur?: ((event: FocusEvent) => any) | undefined; onChange?: ((value: string, event: Event) => any) | undefined; onFocus?: ((event: FocusEvent) => any) | undefined; onPressEnter?: ((event: KeyboardEvent) => any) | undefined; "onUpdate:modelValue"?: ((value: string) => any) | undefined; }>, { type: XyInputType; variant: XyControlVariant; allowClear: boolean; autocomplete: string; autofocus: boolean; modelValue: string; placeholder: string; showCount: boolean; }, {}, {}, {}, 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; }; };