import React from 'react';
export interface IFullScreenProps {
    className?: string;
    status?: boolean;
    style?: React.CSSProperties;
    children: any;
    onClose: () => void;
}
declare const FullScreen: (props: IFullScreenProps) => any;
export default FullScreen;
