import type { ReactNode } from 'react'; import type { Option, OptionGroups, ItemProps, Selection } from '../SelectBase'; export interface Props { options: Option[] | OptionGroups; selection: Selection; renderOption: (option: Option, index: number) => ReactNode; getItemProps: (option: Option, index: number) => ItemProps; } declare const NativeSelectOptions: { ({ options, renderOption, getItemProps, selection, }: Props): JSX.Element; displayName: string; }; export default NativeSelectOptions; //# sourceMappingURL=NativeSelectOptions.d.ts.map