import React from 'react';
export declare type FullScreenDialogProps = {
    closeDialog: () => void;
    title: string;
    children: React.ReactNode;
};
