import React, { type CSSProperties, type MutableRefObject } from "react"; import { type IComboboxCategory, type IComboboxOption, type IComboboxCategoryMap, type IComboboxItem, type IOptionItemRendererArgs, type IComboboxOptionEvents } from "../components/ComboboxConstants"; export declare function useItemsData({ categories, options, filterValue, withCategoriesDivider, optionLineHeight }: { categories: IComboboxCategoryMap; options: IComboboxOption[]; filterValue: string; withCategoriesDivider: boolean; optionLineHeight: number; }): { items: IComboboxItem[]; itemsMap: Map; selectableItems: IComboboxOption[]; }; export declare function useKeyboardNavigation({ defaultVisualFocusFirstIndex, inputRef, onClick, isChildSelectable, options, getOptionId }: { defaultVisualFocusFirstIndex?: boolean; inputRef: MutableRefObject; onClick: (event: React.KeyboardEvent | React.MouseEvent, index: number) => void; isChildSelectable: (index: number) => boolean; options: IComboboxOption[]; getOptionId: (optionId: string, index: number) => string; }): { visualFocusItemIndex: number; visualFocusItemId: string; onOptionClick: (event: React.KeyboardEvent | React.MouseEvent, index: number) => void; }; export declare function createDividerItemObject({ categoryId }: { categoryId: string; }): IComboboxItem; export declare function createCategoryItemObject({ withDivider, categoryId, categoryData, className }: { withDivider: boolean; categoryId: string; categoryData: IComboboxCategory; className: string; }): IComboboxItem; export declare function createOptionItemObject({ option, height, index, optionRenderer, isActive, optionLineHeight, shouldScrollToSelectedItem, categoryId }: { option?: IComboboxOption; height?: number; index?: number; optionRenderer?: (option: IComboboxOption) => JSX.Element; isActive?: boolean; optionLineHeight?: number; shouldScrollToSelectedItem?: boolean; categoryId?: string; }): IComboboxItem; export declare function comboboxItemRenderer({ item, style, optionEvents, optionRenderData, isVirtualized, stickyCategories }: { item: IComboboxItem; style: CSSProperties; optionEvents: IComboboxOptionEvents; optionRenderData: any; isVirtualized: boolean; stickyCategories?: boolean; }): React.JSX.Element; export declare function dividerItemRenderer({ id, height }: { id: string; height: number; }): React.JSX.Element; export declare function categoryItemRenderer({ id, category, className }: { id: string; category: IComboboxCategory; className: string; }): React.JSX.Element; export declare function optionItemRenderer({ id, index, option, className, onOptionClick, onOptionEnter, onOptionLeave, optionLineHeight, optionRenderer, scrollRef, shouldScrollToSelectedItem, activeItemIndex, visualFocusItemIndex }: IOptionItemRendererArgs): React.JSX.Element;