import { type ReactNode } from "react"; export interface IErrorDialogProps { children?: ReactNode; dialogTitle: string; onClose: () => void; } export declare function ErrorDialog({ dialogTitle, children, onClose }: IErrorDialogProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=ErrorDialog.d.ts.map