import type { Option, PickClassStyleType } from 'jamis-core'; import type { SelectCompProps } from '../types'; export declare const SelectOption: (props: { index: number; style?: Record; selection: Option[]; item: Option; itemDisabled?: boolean; checked: boolean; enableVirtualRender: boolean; inputValue: string | null; handleChange: (item: Option) => void; } & Pick & { id: string; role: string; onClick?: (e: any) => void; onMouseDown?: (e: any) => void; onMouseMove?: (e: any) => void; } & PickClassStyleType) => JSX.Element | null;