import type { AnimatePresenceProps } from "./types.js"; import type { MotionState } from "../../state/motion-state.js"; export declare function usePopLayout(props: AnimatePresenceProps): { addPopStyle: (state: MotionState) => void; removePopStyle: (state: MotionState) => void; trackPosition: (state: MotionState) => void; untrackPosition: (state: MotionState) => void; styles: WeakMap; };