import { XMLElement } from '../../common/soap/xmlElement';
import { ExportFormat } from './exportFormat';
export declare class ReportDownloadOptions extends XMLElement {
    protected static XSI_TYPE: string;
    exportFormat: ExportFormat;
    includeReportProperties: boolean;
    includeTotalsRow: boolean;
    useGzipCompression: boolean;
    constructor(exportFormat?: ExportFormat, includeReportProperties?: boolean, includeTotalsRow?: boolean, useGzipCompression?: boolean);
}
