export declare type AsynchronousJobStatus = {
    jobState: any;
    jobCanceling: boolean;
    requestBody: any;
    responseBody: any;
    etag: string;
    jobId: string;
    startedByUserId: number;
    startedOn: string;
    changedOn: string;
    progressMessage: string;
    progressCurrent: number;
    progressTotal: number;
    exception: string;
    errorMessage: string;
    errorDetails: string;
    runtimeMS: number;
};
