export declare const ErrorDialog: ({ message, onClose, }: {
    message: string;
    onClose?: (() => void) | undefined;
}) => JSX.Element;
