import { RefObject } from 'react'; import { FloatingAreaProps } from './FloatingArea.type'; export declare const ENTER: unique symbol; export declare const EXIT: unique symbol; export declare const OUT: unique symbol; export declare const READY: unique symbol; export declare type FloatingAreaConfig = { active: boolean; consumer: RefObject; producer: FloatingAreaProps['producer']; onClose?: () => void; onEscape?: () => void; onFxIn?: () => void; onFxOut?: () => void; }; export declare function useFloatingArea({ active, consumer, onClose, onEscape, onFxIn, onFxOut, producer, }: FloatingAreaConfig): [symbol, () => void]; //# sourceMappingURL=useFloatingArea.d.ts.map