﻿/**
* DevExpress HTML/JS Reporting (designer\wizard\pages\dataSourceWizard\_dataSourceWizardHelper.d.ts)
* Version:  24.2.8
* Build date: Jun 17, 2025
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
* License: https://www.devexpress.com/Support/EULAs/universal.xml
*/
/// <reference types="jquery" />
import { DxPromise } from '@devexpress/analytics-core/analytics-internal-native';
import { IWizardPage, IWizardPageMetadata, PageFactory } from '@devexpress/analytics-core/analytics-wizard';
import { IDataSourceInfo } from '../../../actions/_sqlDataSourceEditor';
export declare function overrideJsonDataSourceWizardPage(factory: PageFactory, pageId: string, meta: IWizardPageMetadata<IWizardPage>): void;
export declare function overrideSqlDataSourceWizardPage(factory: PageFactory, pageId: string, meta: IWizardPageMetadata<IWizardPage>): void;
export declare class DataSourceWizardHelper {
    private _page;
    private _callback;
    constructor(_page: IWizardPage, _callback: (dataSource: any) => DxPromise<IDataSourceInfo>);
    commit(superCommit: () => DxPromise<any>, createDataSource: (state: any) => any): JQuery.Promise<any, any, any>;
}
