﻿/**
* DevExpress HTML/JS Reporting (designer\tools\dialogs\saveAsReportDialog.d.ts)
* Version:  20.2.13
* Build date: Apr 10, 2023
* Copyright (c) 2012 - 2023 Developer Express Inc. ALL RIGHTS RESERVED
* License: https://www.devexpress.com/Support/EULAs/universal.xml
*/
import { IDialogModel, ReportDialogBase } from './reportDialogBase';
import { INavigateTab } from '../navigation/navigateTab';
import { IKeyValuePair } from '../../../common/types';
import { IReportDesignerCustomizationHandler } from '../../utils/inititalizer';
import * as ko from 'knockout';
export declare class SaveAsReportDialogModelBase implements IDialogModel {
    onShow(tab: INavigateTab): void;
    constructor(popup: SaveAsReportDialog, urls: ko.ObservableArray<IKeyValuePair<string>>);
    getUrl(): string;
    setUrl(url: any): void;
    popupButtons: any[];
    reportUrl: ko.Observable<string> | ko.Computed<string>;
    noDataText: any;
    reportNamePlaceholder: () => any;
    urls: ko.ObservableArray<IKeyValuePair<string>>;
    reportName: ko.Observable<string> | ko.Computed<string>;
}
export declare class SaveAsReportDialog extends ReportDialogBase {
    show(tab: INavigateTab): void;
    constructor(subreports: ko.ObservableArray<IKeyValuePair<string>>, callbacks: IReportDesignerCustomizationHandler);
    save(url: any): void;
    onSaving: (e: any) => void;
    onSaved: (e: any) => void;
    closeAfterSave: ko.Observable<boolean>;
    title: string;
}
