import type { PopperLifecycleCallback } from './popper-options'; interface UsePopperLifecycleOptions { open: boolean; /** Positioned AND content committed — the popper is fully usable */ ready: boolean; x: number; y: number; onCreate?: PopperLifecycleCallback; onUpdate?: PopperLifecycleCallback; } export declare const usePopperLifecycle: ({ open, ready, x, y, onCreate, onUpdate, }: UsePopperLifecycleOptions) => void; export default usePopperLifecycle; //# sourceMappingURL=use-popper-lifecycle.d.ts.map