export declare const REQUEST_REPORT = "REQUEST_REPORT"; export declare const RECEIVE_REPORT = "RECEIVE_REPORT"; export declare const FAIL_REPORT = "FAIL_REPORT"; export declare const requestReport: (name: string) => { type: string; name: string; }; export declare const receiveReport: () => { type: string; }; export declare const failReport: () => { type: string; }; export declare const createReport: (name: string) => (dispatch: (event: any) => any, getState: () => any) => void; export declare const runTIFJob: () => (dispatch: (event: any) => any, getState: () => any) => Promise; //# sourceMappingURL=report.d.ts.map