import type { ReactElement } from 'react'; import type { ComboboxItemProps } from './ComboboxItem'; export interface ComboboxItemsProps { children?: ReactElement[] | ReactElement; maxHeight?: string; } declare const ComboboxItems: ({ children, maxHeight }: ComboboxItemsProps) => JSX.Element; export default ComboboxItems;