import { PropsWithChildren } from 'react'; import { ListBoxProps } from '../ListBox'; import { OptionGroupProps } from '../ListBox/components/OptionGroup'; import { SelectOption } from '../types'; export declare type SelectListBoxProps = PropsWithChildren, 'searchable' | 'highlightedText'> & { minGroupsToDisplayHeader?: number; }>; declare const SelectListBox: { ({ children, minGroupsToDisplayHeader, ...props }: SelectListBoxProps): JSX.Element; displayName: string; Option: { ({ children, className, ...props }: import("./SelectListBoxOption").SelectListBoxOptionProps): JSX.Element | null; displayName: string; }; OptionGroup: ({ name, children }: OptionGroupProps) => JSX.Element; SelectAllOption: ({ label, ...passedProps }: import("../ListBox/components/SelectAllOption").SelectAllOptionProps) => JSX.Element; }; export default SelectListBox;