import { BaseObject } from './baseObject';
import { ExportFormat } from './exportFormat';
export interface ReportDownloadOptions extends BaseObject {
    exportFormat?: ExportFormat;
    includeReportProperties?: boolean;
    includeTotalsRow?: boolean;
    useGzipCompression?: boolean;
}
