import * as React from 'react'; import { type ComboboxItem } from '../store/ComboboxStore'; /** * Renders the filtered items through a render function. * Doesn't render its own element. * * Inside a `Combobox.Group` it renders that group's items; anywhere else, every * filtered item with groups flattened away. A flat list needs neither — pass the * render function to `Combobox.List` directly. */ export declare function ComboboxCollection(props: ComboboxCollection.Props): React.JSX.Element; export interface ComboboxCollectionState { } export interface ComboboxCollectionProps { children: (item: ComboboxItem, index: number) => React.ReactNode; } export declare namespace ComboboxCollection { type State = ComboboxCollectionState; type Props = ComboboxCollectionProps; } //# sourceMappingURL=ComboboxCollection.d.ts.map