import * as React from 'react'; import type { BaseUIComponentProps } from "../../internals/types.mjs"; /** * A list container for the items. * Renders a `
` element. * * Documentation: [Base UI Combobox](https://base-ui.com/react/components/combobox) */ export declare const ComboboxList: React.ForwardRefExoticComponent & React.RefAttributes>; export interface ComboboxListState { /** * Whether the list is empty. */ empty: boolean; } export interface ComboboxListProps extends Omit, 'children'> { children?: React.ReactNode | ((item: any, index: number) => React.ReactNode); } export declare namespace ComboboxList { type State = ComboboxListState; type Props = ComboboxListProps; }