import { type FocusEvent, type KeyboardEvent, type SyntheticEvent } from 'react'; import { type TreeLikeAutocompleteProps } from '../TreeLikeAutocomplete'; type UseLogicProps = TreeLikeAutocompleteProps; export declare const useLogic: ({ value, options, onBlur }: UseLogicProps) => { inputProps: { valueToRender: import("..").TreeLikeListAutocompleteData[] | undefined; onBlur: (event: FocusEvent) => void; onClick: () => void; onKeyDown: (event: KeyboardEvent) => void; }; optionsModalProps: { isOpen: boolean; onClose: (event: SyntheticEvent) => void; }; }; export {};