import type React from "react";
export interface LegacyDialogTitleProps {
    className?: string;
    children: React.ReactNode;
}
/**
 * @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 LegacyDialogTitle({ className, children }: LegacyDialogTitleProps): import("react/jsx-runtime").JSX.Element;
