import type { RpcTransport } from "@protobuf-ts/runtime-rpc"; import type { ServiceInfo } from "@protobuf-ts/runtime-rpc"; import type { MutateCampaignGroupsResponse } from "./campaign_group_service"; import type { MutateCampaignGroupsRequest } from "./campaign_group_service"; import type { UnaryCall } from "@protobuf-ts/runtime-rpc"; import type { RpcOptions } from "@protobuf-ts/runtime-rpc"; /** * Service to manage campaign groups. * * @generated from protobuf service google.ads.googleads.v11.services.CampaignGroupService */ export interface ICampaignGroupServiceClient { /** * Creates, updates, or removes campaign groups. Operation statuses are * returned. * * @generated from protobuf rpc: MutateCampaignGroups(google.ads.googleads.v11.services.MutateCampaignGroupsRequest) returns (google.ads.googleads.v11.services.MutateCampaignGroupsResponse); */ mutateCampaignGroups(input: MutateCampaignGroupsRequest, options?: RpcOptions): UnaryCall; } /** * Service to manage campaign groups. * * @generated from protobuf service google.ads.googleads.v11.services.CampaignGroupService */ export declare class CampaignGroupServiceClient implements ICampaignGroupServiceClient, ServiceInfo { private readonly _transport; typeName: string; methods: import("@protobuf-ts/runtime-rpc").MethodInfo[]; options: { [extensionName: string]: import("@protobuf-ts/runtime").JsonValue; }; constructor(_transport: RpcTransport); /** * Creates, updates, or removes campaign groups. Operation statuses are * returned. * * @generated from protobuf rpc: MutateCampaignGroups(google.ads.googleads.v11.services.MutateCampaignGroupsRequest) returns (google.ads.googleads.v11.services.MutateCampaignGroupsResponse); */ mutateCampaignGroups(input: MutateCampaignGroupsRequest, options?: RpcOptions): UnaryCall; }