﻿/**
* DevExpress HTML/JS Reporting (designer\wizard\pages\fullscreen\ai\aiReasoningPage.d.ts)
* Version:  26.1.3
* Build date: Jun 16, 2026
* Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED
* License: https://www.devexpress.com/Support/EULAs/universal.xml
*/
/// <reference types="jquery" />
import { FullscreenWizardPage, FullscreenWizardPageFactory, IWizardPage } from '@devexpress/analytics-core/analytics-wizard';
import * as ko from 'knockout';
import { IReportWizardState } from '../../../reportWizardState';
import { IPromptClarificationQuestion } from '../../../../services/_aiService';
export declare class AIReasoningPage extends FullscreenWizardPage implements IWizardPage {
    private _id;
    private _controller;
    private _shouldDisposeReport;
    private _shouldIgnoreError;
    private _getReportGenerationStatus;
    private _disposeReport;
    private _startGenerationStatusPolling;
    private _updateGenerationStatus;
    initialize(state: IReportWizardState): JQuery.Promise<any, any, any>;
    commit(): JQuery.Promise<Partial<IReportWizardState>, any, any>;
    dispose(): void;
    canNext(): boolean;
    canFinish(): boolean;
    _onExit(goForward: boolean): Promise<void>;
    _submitAnswer(): Promise<void>;
    _status: ko.Observable<string>;
    _question: ko.Observable<IPromptClarificationQuestion>;
    _answer: ko.Observable<string>;
    get _options(): string[];
    _generationCompleted: ko.Observable<boolean>;
    get _generationInProgress(): boolean;
    _defaultErrorText: string;
    _defaultStatusText: string;
    _submitButtonText: string;
}
export declare function _registerAIReasoningPage(factory: FullscreenWizardPageFactory): void;
