import { ComboboxRootProps } from 'radix-vue'; import { BadgeProps } from '../badge/badge'; import { ComboboxItemPropsType } from './combobox-item'; export interface ComboboxPropsType extends ComboboxRootProps { options: ComboboxItemPropsType[]; valueBy?: string; labelBy?: string; placeholder?: string; searchPlaceholder?: string; type?: 'normal' | 'compact' | 'inline' | 'compact-input'; size?: 'xs' | 'sm' | 'md'; emptyLabel?: string; badgeProps?: BadgeProps; searchable?: boolean; class?: string; } declare const _default: typeof __VLS_export; export default _default; declare const __VLS_export: __VLS_WithSlots any; "update:modelValue": (value: import('node_modules/radix-vue/dist/Combobox/ComboboxRoot').AcceptableValue) => any; "update:searchTerm": (value: string) => any; "update:selectedValue": (value: import('node_modules/radix-vue/dist/Combobox/ComboboxRoot').AcceptableValue | undefined) => any; }, string, import('vue').PublicProps, Readonly & Readonly<{ "onUpdate:open"?: ((value: boolean) => any) | undefined; "onUpdate:modelValue"?: ((value: import('node_modules/radix-vue/dist/Combobox/ComboboxRoot').AcceptableValue) => any) | undefined; "onUpdate:searchTerm"?: ((value: string) => any) | undefined; "onUpdate:selectedValue"?: ((value: import('node_modules/radix-vue/dist/Combobox/ComboboxRoot').AcceptableValue | undefined) => any) | undefined; }>, { size: "xs" | "sm" | "md"; placeholder: string; }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>, { image?: (props: { selected: ComboboxItemPropsType; }) => any; } & { prefix?: (props: { class: string; }) => any; }>; type __VLS_WithSlots = T & { new (): { $slots: S; }; };