///
import { Strategy } from '@floating-ui/core';
export declare type FloatingFullContextType = {
x: number | null;
y: number | null;
strategy: Strategy;
reference: (node: HTMLElement | null) => void;
floating: (node: HTMLElement | null) => void;
update: () => void;
};
export declare const FloatingFullContext: import("react").Context;
export declare const useFloatingFullContext: () => FloatingFullContextType;