import type { ReactNode } from 'react'; import type { FocusEventType, ItemProps, Option, OptionGroups, SelectProps, Selection } from '../SelectBase'; export declare type Props = Pick & { options: Option[] | OptionGroups; highlightedIndex: number | null; filterOptionsValue: string; getItemProps: (option: Option, index: number) => ItemProps; onBlur?: FocusEventType; fixedHeader?: ReactNode; fixedFooter?: ReactNode; selection: Selection; testIds?: { noOptions?: string; }; }; declare const NonNativeSelectOptions: { ({ options, renderOption, highlightedIndex, getItemProps, onBlur, selection, filterOptionsValue, noOptionsText, fixedHeader, fixedFooter, testIds, }: Props): JSX.Element; displayName: string; }; export default NonNativeSelectOptions; //# sourceMappingURL=NonNativeSelectOptions.d.ts.map