import type { XyControlStatus, XyControlVariant, XyOverlayPlacement, XySize } from "../core"; import type { XySelectClassNames, XySelectFilterOption, XySelectMode, XySelectModelValue, XySelectOption, XySelectSlots, XySelectStyles, XySelectValue } from "./types"; type __VLS_Props = { allowClear?: boolean; ariaActiveDescendant?: string; ariaControls?: string; ariaHaspopup?: "dialog" | "grid" | "listbox" | "menu" | "tree"; ariaLabel?: string; autoClearSearchValue?: boolean; autofocus?: boolean; classNames?: XySelectClassNames; disabled?: boolean; error?: string; filterOption?: boolean | XySelectFilterOption; id?: string; label?: string; loading?: boolean; maxCount?: number; maxTagCount?: number; maxTagTextLength?: number; mode?: XySelectMode; modelValue?: XySelectModelValue; multiple?: boolean; open?: boolean; options?: XySelectOption[]; placeholder?: string; placement?: XyOverlayPlacement; popupMatchSelectWidth?: boolean | number; readonly?: boolean; remote?: boolean; searchable?: boolean; showSearch?: boolean; size?: XySize; status?: XyControlStatus; styles?: XySelectStyles; variant?: XyControlVariant; }; type __VLS_Slots = XySelectSlots; declare const __VLS_base: import("vue").DefineComponent<__VLS_Props, { blur: () => void | undefined; focus: (options?: FocusOptions) => void | undefined; nativeElement: import("vue").Ref; }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { search: (value: string) => any; select: (value: XySelectValue, option: XySelectOption) => any; clear: () => any; blur: (event: FocusEvent) => any; change: (value: XySelectModelValue, option?: XySelectOption | undefined) => any; focus: (event: FocusEvent) => any; "update:open": (open: boolean) => any; "update:modelValue": (value: XySelectModelValue) => any; "open-change": (open: boolean) => any; deselect: (value: XySelectValue, option?: XySelectOption | undefined) => any; }, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{ onSearch?: ((value: string) => any) | undefined; onSelect?: ((value: XySelectValue, option: XySelectOption) => any) | undefined; onClear?: (() => any) | undefined; onBlur?: ((event: FocusEvent) => any) | undefined; onChange?: ((value: XySelectModelValue, option?: XySelectOption | undefined) => any) | undefined; onFocus?: ((event: FocusEvent) => any) | undefined; "onUpdate:open"?: ((open: boolean) => any) | undefined; "onUpdate:modelValue"?: ((value: XySelectModelValue) => any) | undefined; "onOpen-change"?: ((open: boolean) => any) | undefined; onDeselect?: ((value: XySelectValue, option?: XySelectOption | undefined) => any) | undefined; }>, { label: string; multiple: boolean; error: string; options: XySelectOption[]; variant: XyControlVariant; ariaLabel: string; loading: boolean; maxCount: number; placement: XyOverlayPlacement; allowClear: boolean; autofocus: boolean; modelValue: XySelectModelValue; placeholder: string; filterOption: boolean | XySelectFilterOption; ariaActiveDescendant: string; ariaControls: string; ariaHaspopup: "dialog" | "grid" | "listbox" | "menu" | "tree"; autoClearSearchValue: boolean; maxTagCount: number; popupMatchSelectWidth: boolean | number; remote: boolean; searchable: boolean; showSearch: 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; }; };