import * as React from "react";
export interface LegacyDialogProps {
    open: boolean;
    dialogWidth?: "480px" | "600px" | "800px" | "1000px";
    fullScreen?: boolean;
    children?: React.ReactNode;
    onExited?: () => void;
    keepChildrenMounted?: boolean;
}
/**
 * @deprecated
 * Deprecated: 28/05/2026
 * Replacement: Use workflows in Portal, or Dialog otherwise
 * Reason: This component is deprecated and will be removed in a future release.
 */
export declare function LegacyDialog(props: LegacyDialogProps): import("react/jsx-runtime").JSX.Element;
export declare namespace LegacyDialog {
    var displayName: string;
}
