export interface AnimatePresenceProps {
    mode?: 'wait' | 'popLayout' | 'sync';
    initial?: boolean;
    as?: string;
    custom?: any;
    onExitComplete?: VoidFunction;
    anchorX?: 'left' | 'right';
}
