import { PropsWithChildren } from "react"; import { WindowProps } from "../Window/Window"; export interface ErrorProps extends WindowProps { title: string; iconSize?: number; onClose: () => void; onConfirm: () => void; confirmText?: string; } export declare const Error: ({ onClose, title, children, iconSize, confirmText, onConfirm, ...windowProps }: PropsWithChildren) => JSX.Element;