import React from 'react'; import { AnimationPlacement } from '../InternalCSSTransition'; export interface PopupContextProps { visable: boolean; duration?: number; placement?: AnimationPlacement; onClose: () => void; } export declare const PopupContext: React.Context;