import { ComboboxItem, ComboboxLikeRenderOptionInput } from '@mantine/core'; import { OptionsGroup } from './VCombobox.types'; interface VComboboxOptionProps { data: ComboboxItem | OptionsGroup; value?: string | string[] | null; renderOption: ((input: ComboboxLikeRenderOptionInput>) => React.ReactNode) | undefined; } export declare function VComboboxOption({ data, value, renderOption }: VComboboxOptionProps): import("react/jsx-runtime").JSX.Element; export {};