import { PropsWithChildren } from 'react'; import { ListBoxOptionProps } from '../ListBox'; import { SelectOption } from '../types'; export declare type SelectListBoxOptionProps = PropsWithChildren, 'option'> & Omit['option'], 'label'>>; declare const SelectListBoxOption: { ({ children, className, ...props }: SelectListBoxOptionProps): JSX.Element | null; displayName: string; }; export default SelectListBoxOption;