import { BaseService, IOperationServiceOptions } from '../../core'; import { IManagedCustomer } from './ManagedCustomer'; import { IPage } from '../../../types/abstract'; /** * https://developers.google.com/adwords/api/docs/reference/v201809/ManagedCustomerService * * @author dulin * @class ManagedCustomerService * @extends {AdwordsOperationService} */ declare class ManagedCustomerService extends BaseService { static readonly namespace = "https://adwords.google.com/api/adwords/mcm"; constructor(operationServiceOptions: IOperationServiceOptions); getAccountHierarchy(): Promise>; } export { ManagedCustomerService };