import { AnimatePresenceProps } from './types';
export declare function usePresenceContainer(props: AnimatePresenceProps): {
    enter: (el: HTMLElement, done: VoidFunction) => void;
    exit: (el: Element, done: VoidFunction) => void;
};
