import React, { type ReactNode } from 'react';
interface DialogProps {
    open: boolean;
    onClose: () => void;
    titleId: string;
    onMountAutoFocus?: (event: Event) => void;
    children: ReactNode;
}
export declare function Dialog({ children, onClose, open, titleId }: DialogProps): React.JSX.Element;
export {};
