import { IClientReportService } from '../ReportService'; import { IReportDefinition } from '../ReportDefinitionService/ReportDefinition'; import { ClientReportService } from './AbstractClientReportService'; /** * https://developers.google.com/adwords/api/docs/appendix/reports/campaign-performance-report * * @author dulin * @class CampaignPerformanceReportService * @implements {IClientReportService} */ declare class CampaignPerformanceReportService extends ClientReportService implements IClientReportService { static readonly reportName: string; private static readonly attributes; private static readonly segments; private static readonly metrics; private static readonly selectorFields; private reportService; private constructor(); get(reportDefinition: Partial): Promise; } export { CampaignPerformanceReportService };