import { SelectItem, GetItemPropsFn } from '../types/selectFieldInternalTypes'; import { CheckState } from '../../types'; export type SelectOptionProps = { item: SelectItem; index: number; highlighted: boolean; disabled: boolean; getItemProps: GetItemPropsFn; selectionType: "single" | "multiple"; checked: CheckState; isListScrolled?: boolean; }; export declare const SelectOption: ({ item, index, highlighted, disabled, getItemProps, selectionType, checked, isListScrolled, }: SelectOptionProps) => import("react/jsx-runtime").JSX.Element;