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) => DxPromise): void; _pageDescription(): string; _description(): string; navigationPanel: ko.Observable; _steps: FullscreenWizardPage[]; _extendCssClass: string; pageFactory: FullscreenWizardPageFactory; }