import type { RpcTransport } from "@protobuf-ts/runtime-rpc"; import type { ServiceInfo } from "@protobuf-ts/runtime-rpc"; import type { MutateAdGroupCustomizersResponse } from "./ad_group_customizer_service"; import type { MutateAdGroupCustomizersRequest } from "./ad_group_customizer_service"; import type { UnaryCall } from "@protobuf-ts/runtime-rpc"; import type { RpcOptions } from "@protobuf-ts/runtime-rpc"; /** * Service to manage ad group customizer * * @generated from protobuf service google.ads.googleads.v11.services.AdGroupCustomizerService */ export interface IAdGroupCustomizerServiceClient { /** * Creates, updates or removes ad group customizers. Operation statuses are * returned. * * @generated from protobuf rpc: MutateAdGroupCustomizers(google.ads.googleads.v11.services.MutateAdGroupCustomizersRequest) returns (google.ads.googleads.v11.services.MutateAdGroupCustomizersResponse); */ mutateAdGroupCustomizers(input: MutateAdGroupCustomizersRequest, options?: RpcOptions): UnaryCall; } /** * Service to manage ad group customizer * * @generated from protobuf service google.ads.googleads.v11.services.AdGroupCustomizerService */ export declare class AdGroupCustomizerServiceClient implements IAdGroupCustomizerServiceClient, 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 ad group customizers. Operation statuses are * returned. * * @generated from protobuf rpc: MutateAdGroupCustomizers(google.ads.googleads.v11.services.MutateAdGroupCustomizersRequest) returns (google.ads.googleads.v11.services.MutateAdGroupCustomizersResponse); */ mutateAdGroupCustomizers(input: MutateAdGroupCustomizersRequest, options?: RpcOptions): UnaryCall; }