import React from 'react'; import { InternalCSSTransitionProps } from '../InternalCSSTransition'; import { PopupContextProps } from './context'; import './index.less'; export declare type PopupProps = PopupContextProps & InternalCSSTransitionProps & { style?: React.CSSProperties; className?: string; children: React.ReactNode; title?: React.ReactNode; closable?: boolean; maskClosable?: boolean; destroyOnClose?: boolean; closeIcon?: React.ReactNode; catchMove?: boolean; contentStyle?: React.CSSProperties; contentClassName?: string; }; export declare const Popup: React.NamedExoticComponent; export default Popup;