import { InputSelectOption } from './input-select'; declare function __VLS_template(): { attrs: Partial<{}>; slots: { suffix?(_: {}): any; }; refs: { selectRef: HTMLDivElement; triggerBtnRef: HTMLButtonElement; panelRef: HTMLDivElement; inputRef: HTMLInputElement; }; rootEl: HTMLDivElement; }; type __VLS_TemplateResult = ReturnType; declare const __VLS_component: import('vue').DefineComponent>; readonly default: () => {}; }; readonly options: { readonly type: import('vue').PropType<(InputSelectOption | string)[]>; readonly default: () => never[]; }; readonly placeholder: { readonly type: StringConstructor; readonly default: ""; }; readonly selectPlaceholder: { readonly type: StringConstructor; readonly default: "Select"; }; readonly disabled: { readonly type: BooleanConstructor; readonly default: false; }; readonly readonly: { readonly type: BooleanConstructor; readonly default: false; }; readonly clearable: { readonly type: BooleanConstructor; readonly default: false; }; readonly size: { readonly type: import('vue').PropType; readonly default: "default"; }; readonly selectPosition: { readonly type: import('vue').PropType<"start" | "end">; readonly default: "start"; }; readonly type: { readonly type: import('vue').PropType<"text" | "number" | "email" | "tel" | "url">; readonly default: "text"; }; readonly maxlength: { readonly type: NumberConstructor; readonly default: undefined; }; readonly autofocus: { readonly type: BooleanConstructor; readonly default: false; }; readonly mask: { readonly type: StringConstructor; readonly default: ""; }; }>, { focus: () => void | undefined; blur: () => void | undefined; inputRef: import('vue').Ref; selectedKey: import('vue').Ref; }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, { clear: () => void; input: (key: string, value: string) => void; select: (key: string) => void; "update:modelValue": (value: Record) => void; focus: (event: FocusEvent) => void; blur: (event: FocusEvent) => void; change: (key: string, value: string) => void; }, string, import('vue').PublicProps, Readonly>; readonly default: () => {}; }; readonly options: { readonly type: import('vue').PropType<(InputSelectOption | string)[]>; readonly default: () => never[]; }; readonly placeholder: { readonly type: StringConstructor; readonly default: ""; }; readonly selectPlaceholder: { readonly type: StringConstructor; readonly default: "Select"; }; readonly disabled: { readonly type: BooleanConstructor; readonly default: false; }; readonly readonly: { readonly type: BooleanConstructor; readonly default: false; }; readonly clearable: { readonly type: BooleanConstructor; readonly default: false; }; readonly size: { readonly type: import('vue').PropType; readonly default: "default"; }; readonly selectPosition: { readonly type: import('vue').PropType<"start" | "end">; readonly default: "start"; }; readonly type: { readonly type: import('vue').PropType<"text" | "number" | "email" | "tel" | "url">; readonly default: "text"; }; readonly maxlength: { readonly type: NumberConstructor; readonly default: undefined; }; readonly autofocus: { readonly type: BooleanConstructor; readonly default: false; }; readonly mask: { readonly type: StringConstructor; readonly default: ""; }; }>> & Readonly<{ onClear?: (() => any) | undefined; onInput?: ((key: string, value: string) => any) | undefined; onSelect?: ((key: string) => any) | undefined; "onUpdate:modelValue"?: ((value: Record) => any) | undefined; onFocus?: ((event: FocusEvent) => any) | undefined; onBlur?: ((event: FocusEvent) => any) | undefined; onChange?: ((key: string, value: string) => any) | undefined; }>, { readonly size: import('./input-select').InputSelectSize; readonly disabled: boolean; readonly type: "number" | "text" | "email" | "tel" | "url"; readonly mask: string; readonly modelValue: Record; readonly placeholder: string; readonly readonly: boolean; readonly clearable: boolean; readonly maxlength: number; readonly autofocus: boolean; readonly options: (string | InputSelectOption)[]; readonly selectPlaceholder: string; readonly selectPosition: "end" | "start"; }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, { selectRef: HTMLDivElement; triggerBtnRef: HTMLButtonElement; panelRef: HTMLDivElement; inputRef: HTMLInputElement; }, HTMLDivElement>; declare const _default: __VLS_WithTemplateSlots; export default _default; type __VLS_WithTemplateSlots = T & { new (): { $slots: S; }; };