import type { ReactNode } from 'react'; import React from 'react'; import type { ItemProps, Option, ValueType } from '../SelectBase'; export interface Props extends ItemProps { children?: ReactNode; description?: ReactNode; selected: boolean; highlighted: boolean; option: Option; } declare const NonNativeSelectOption: React.MemoExoticComponent<(({ option, selected, highlighted, description, children, ...itemProps }: Props) => JSX.Element)>; export default NonNativeSelectOption; //# sourceMappingURL=NonNativeSelectOption.d.ts.map