/**
 * @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
 * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
 */
/**
 * @module ai/aireviewcore/ui/aireviewcoregeneralerrorview
 */
import { type Locale } from '@ckeditor/ckeditor5-utils';
import { View } from '@ckeditor/ckeditor5-ui';
export declare class AIReviewCoreGeneralErrorView extends View {
    /**
     * Controls whether the view is visible.
     *
     * @observable
     */
    isVisible: boolean;
    /**
     * The error message to display.
     *
     * @observable
     */
    errorMessage: string;
    constructor(locale: Locale);
}
