import { BaseObject } from './baseObject';
import { ReportDownloadOptions } from './reportDownloadOptions';
export interface GetReportDownloadUrlWithOptions extends BaseObject {
    reportJobId?: number;
    reportDownloadOptions?: ReportDownloadOptions;
}
