import { type FocusEvent, type KeyboardEvent, type SyntheticEvent } from 'react'; import { type TreeAutocompleteProps } from '../TreeAutocomplete'; type UseLogicProps = TreeAutocompleteProps; export declare const useLogic: ({ value, options, onBlur }: UseLogicProps) => { inputProps: { value: import("react").ReactNode; onBlur: (event: FocusEvent) => void; onClick: () => void; onKeyDown: (event: KeyboardEvent) => void; }; optionsModalProps: { isOpen: boolean; onClose: (event: SyntheticEvent) => void; }; }; export {};