export declare enum ExportFormat {
    TSV = "TSV",
    TSV_EXCEL = "TSV_EXCEL",
    CSV_DUMP = "CSV_DUMP",
    XML = "XML",
    XLSX = "XLSX"
}
/** getReportDownloadURL */
export interface GetReportDownloadUrl {
    /** xsd:long */
    reportJobId?: number;
    /** ExportFormat|xsd:string|TSV,TSV_EXCEL,CSV_DUMP,XML,XLSX */
    exportFormat?: ExportFormat | keyof typeof ExportFormat;
}
