/** * DevExpress Analytics (query-builder\wizard\fullscreen\fullscreenWizard.d.ts) * Version: 25.2.7 * Build date: May 5, 2026 * Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED * License: https://www.devexpress.com/Support/EULAs/universal.xml */ /// import * as ko from 'knockout'; import { PopupWizard } from '../popupWizard'; import { FullscreenWizardPageFactory } from './fullscreenWizardPageFactory'; import { _WrappedWizardPage } from '../pages/__wrappedWizardPage'; import { WizardNavigationPanel } from './fullscreenWizardNavigation'; import { FullscreenWizardPage } from './pages/fullscreenWizardPage'; import { DxPromise } from '../../../core/utils/_jqueryUtils'; export declare class FullscreenWizard extends PopupWizard { private _onCloseCallback; constructor(pageFactory: FullscreenWizardPageFactory, finishCallback?: any); _onClose(callback: any): void; onFinish(): void; _initPage(page: any): DxPromise; _onResetPage(page: _WrappedWizardPage): void; start(finishCallback?: (model: any) => JQueryPromise): void; _pageDescription(): string; _description(): string; navigationPanel: ko.Observable; _steps: FullscreenWizardPage[]; _extendCssClass: string; pageFactory: FullscreenWizardPageFactory; }