﻿/**
* DevExpress HTML/JS Reporting (designer\wizard\internal\_legacyReportRequestModel.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
*/
import { INumericSize } from '@devexpress/analytics-core/analytics-elements';
import { PaperKind } from '../../utils/paperKind';
import { ILegacyReportWizardState, ReportUnit } from '../reportWizardState';
import { ReportLayout } from './layoutPageUtils';
import { ReportStyle } from './reportStylePageUtils';
import { CommonRequestModel } from './_commonRequestModel';
export declare class LegacyReportRequestModel extends CommonRequestModel {
    AdjustFieldWidth: boolean;
    Columns: Array<string>;
    ColumnInfo: {
        Name: string;
        DisplayName: string;
        TypeSpecifics: number;
    }[];
    DataSourceName: string;
    GroupingLevels: string[][];
    Layout: ReportLayout;
    Portrait: boolean;
    ReportStyleId: ReportStyle;
    SummaryOptions: {
        ColumnName: string;
        Flags: number;
    }[];
    UseMasterDetailBuilder: boolean;
    PaperKind: PaperKind;
    PaperSize: INumericSize;
    Margins: {
        top: number;
        right: number;
        bottom: number;
        left: number;
    };
    ReportUnit: ReportUnit;
    constructor(state: ILegacyReportWizardState);
}
