import { AdwordsOperationService, SoapService } from '../../core'; import { ISelector } from '../../../types/adwords'; import { IPage } from '../../../types/abstract'; import { IBatchJob } from './BatchJob'; declare class BatchJobService extends AdwordsOperationService { /** * https://developers.google.com/adwords/api/docs/appendix/selectorfields#v201809-BatchJobService * * @private * @static * @type {string[]} * @memberof BatchJobService */ private static readonly selectFields; private soapService; constructor(options: { soapService: SoapService; }); getAll(): Promise>; protected get>(serviceSelector: ServiceSelector): Promise; } export { BatchJobService };