/**
 * Copyright 2018-2023 Denis Haev (bluefox) <dogafox@gmail.com>
 *
 * MIT License
 *
 */
import React, { Component, type JSX } from 'react';
interface DialogErrorProps {
    title?: string;
    text: string | React.JSX.Element | React.JSX.Element[];
    onClose?: () => void;
    fullWidth?: boolean;
}
export declare class DialogError extends Component<DialogErrorProps> {
    handleOk(): void;
    render(): JSX.Element;
}
export {};
