import { UseDataListProps, UseDataListReturnType } from './types'; export declare const getDataListPayload: (optionElement: HTMLLIElement | null) => { value: string; originalIndex: string; label: string; optionElement: null; } | { value: string; label: string; originalIndex: string; optionElement: HTMLLIElement; }; export declare const useDataList: ({ anchorRef, chooseOnSpace, listRef, onSelect, onOpen, onKeyDown: onKeyDownProp, onHighlight, }: UseDataListProps) => UseDataListReturnType;