export declare const START_JOB = "START_JOB"; export declare const FAIL_JOB = "FAIL_JOB"; export declare const RECEIVE_JOB_STATUS = "RECEIVE_JOB_STATUS"; export declare const FINISH_JOB = "FINISH_JOB"; export declare const startJob: (configuration: any) => { type: string; configuration: any; }; export declare const failJob: () => { type: string; }; export declare const receiveJobStatus: (json: any) => { type: string; status: any; serviceId: any; }; export declare const finishJob: (configuration: any) => { type: string; configuration: any; }; export declare const runJob: (configuration: any) => (dispatch: (action: any) => any) => Promise; //# sourceMappingURL=job.d.ts.map