import ServiceBase from '../base'; declare class JobService extends ServiceBase { createJob: (options: any) => Promise<{}>; createJobWithParams: (options: any) => Promise<{}>; createBoxJob: (options: any) => Promise<{}>; createBatchJob: (options: any) => Promise<{}>; createJobFromCompare: (options: any) => Promise<{}>; getJob: (data: any) => Promise<{}>; getBatchJobStates: (data: any) => Promise<{}>; getBatchJob: (options: any) => Promise<{}>; createCompare: (options: any) => Promise<{}>; getCompare: (options: any) => Promise<{}>; getCompareRecordFromTranslation: (option: any) => Promise<{}>; createCompareFromTranslation: (option: any) => Promise<{}>; getCompareInfoFromTranslation: (option: any) => Promise<{}>; } export { JobService }; //# sourceMappingURL=job.d.ts.map