/**
 * @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/aireviewmode/model/aireviewcustomcheckrun
 */
import { AIReviewCheckRun } from '../../aireviewcore/model/aireviewcheckrun.js';
import { type AIConnector } from '../../aicore/aiconnector.js';
import { type AIDocumentData } from '../../aireviewcore/aireviewcoreediting.js';
import { type AIReviewCheck } from '../../aireviewcore/model/aireviewcheck.js';
/**
 * Represents a single custom review check
 * ({@link module:ai/aireviewmode/model/aireviewcheckcustom~AIReviewCheckCustom}) run and its results.
 */
export declare class AIReviewCustomCheckRun extends AIReviewCheckRun {
    constructor(prompt: string, model: string, documentData: AIDocumentData, sourceCheck: AIReviewCheck, connector: AIConnector);
    /**
     * @inheritDoc
     */
    get subTitle(): string;
}
