import React from 'react'; import { InternalCSSTransitionProps } from '../InternalCSSTransition'; import './index.less'; export declare type BackDropProps = InternalCSSTransitionProps & { style?: React.CSSProperties; className?: string; timeout?: number; maskClosable?: boolean; children?: React.ReactNode; visable?: boolean; onClose?: () => void; }; export declare const BackDrop: React.NamedExoticComponent; export default BackDrop;