import { DetailedHTMLProps, HTMLAttributes } from 'react';
export interface FullScreenDialogProps extends DetailedHTMLProps, HTMLDivElement> {
open?: boolean;
onClose?: () => void;
/**
* When provided, the top-left button becomes a back affordance (chevron) that
* calls this handler instead of closing. Escape/backdrop still call onClose.
*/
onBack?: () => void;
disableEscapeClose?: boolean;
}
export declare const FullScreenDialog: ({ children, open, className, onClose, onBack, disableEscapeClose, ...restProps }: FullScreenDialogProps) => import("react/jsx-runtime").JSX.Element;