import * as React from 'react';
interface FullScreenDialogProps {
    open?: boolean;
    onClose: () => void;
}
declare const _default: ({ open, onClose, children }: React.PropsWithChildren<FullScreenDialogProps>) => JSX.Element;
export default _default;
