import { Nullable, SelectOptionValue } from '../../types/index.js'; import { OnyxFormElementV2Slots } from '../OnyxFormElementV2/types.js'; import { OnyxSelectProps, SelectOption } from './types.js'; declare const _default: (__VLS_props: NonNullable>["props"], __VLS_ctx?: __VLS_PrettifyLocal>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable>["expose"], __VLS_setup?: Promise<{ props: __VLS_PrettifyLocal & Omit<{ readonly onValidityChange?: ((validity: ValidityState) => any) | undefined; readonly "onUpdate:modelValue"?: ((value?: Nullable) => any) | undefined; readonly "onUpdate:open"?: ((value: boolean) => any) | undefined; readonly onLazyLoad?: (() => any) | undefined; readonly "onUpdate:searchTerm"?: ((value: string) => any) | undefined; } & import('vue', { with: { "resolution-mode": "import" } }).VNodeProps & import('vue', { with: { "resolution-mode": "import" } }).AllowedComponentProps & import('vue', { with: { "resolution-mode": "import" } }).ComponentCustomProps, never>, "onUpdate:modelValue" | "onUpdate:open" | "onValidityChange" | "onLazyLoad" | "onUpdate:searchTerm"> & OnyxSelectProps & Partial<{}>> & import('vue', { with: { "resolution-mode": "import" } }).PublicProps; expose(exposed: import('vue').ShallowUnwrapRef<{ input: Readonly>; }>): void; attrs: any; slots: Readonly & { /** * Optional slot to customize the empty state when no options exist. * It is recommended to use the `` component here. * * If unset, a default translated message will be displayed for the current locale. */ empty?(props: { defaultMessage: string; }): unknown; /** * Optional slot that is displayed below all options that can be used * to e.g. show a button to load more options instead of lazy loading on scroll. */ optionsEnd?(): unknown; /** * Optional slot to override the option content. */ option?(props: SelectOption): unknown; /** * Optional slot to override the icon of the toggle button inside the input. * Recommended to use the `OnyxFormElementAction` component here. */ toggleIcon?(): unknown; }> & Pick & { /** * Optional slot to customize the empty state when no options exist. * It is recommended to use the `` component here. * * If unset, a default translated message will be displayed for the current locale. */ empty?(props: { defaultMessage: string; }): unknown; /** * Optional slot that is displayed below all options that can be used * to e.g. show a button to load more options instead of lazy loading on scroll. */ optionsEnd?(): unknown; /** * Optional slot to override the option content. */ option?(props: SelectOption): unknown; /** * Optional slot to override the icon of the toggle button inside the input. * Recommended to use the `OnyxFormElementAction` component here. */ toggleIcon?(): unknown; }; emit: ((evt: "validityChange", validity: ValidityState) => void) & ((evt: "update:modelValue", value?: Nullable) => void) & ((evt: "update:open", value: boolean) => void) & ((evt: "lazyLoad") => void) & ((evt: "update:searchTerm", value: string) => void); }>) => import('vue').VNode & { __ctx?: Awaited; }; export default _default; type __VLS_PrettifyLocal = { [K in keyof T]: T[K]; } & {};