import type { ComponentType, ForwardRefExoticComponent, PropsWithoutRef, ReactNode, RefAttributes } from 'react'; import { type BoxProps } from '../Box'; import type { OptionType } from './OptionType'; export type OptionsProps = Omit & { multiple?: boolean; options: OptionType[]; cursor: number; renderItem?: ComponentType<{ role?: string; label: TLabel; value: TValue; selected?: boolean; focus?: boolean; }>; renderEmpty?: ComponentType<{ customEmpty?: string; }>; onSelect: (option: OptionType) => void; customEmpty?: string; }; declare const Options: ForwardRefExoticComponent & RefAttributes> & { (props: PropsWithoutRef> & RefAttributes): JSX.Element; }; export default Options; //# sourceMappingURL=Options.d.ts.map