import type { RpcTransport } from "@protobuf-ts/runtime-rpc"; import type { ServiceInfo } from "@protobuf-ts/runtime-rpc"; import type { MutateCustomerConversionGoalsResponse } from "./customer_conversion_goal_service"; import type { MutateCustomerConversionGoalsRequest } from "./customer_conversion_goal_service"; import type { UnaryCall } from "@protobuf-ts/runtime-rpc"; import type { RpcOptions } from "@protobuf-ts/runtime-rpc"; /** * Service to manage customer conversion goal. * * @generated from protobuf service google.ads.googleads.v11.services.CustomerConversionGoalService */ export interface ICustomerConversionGoalServiceClient { /** * Creates, updates or removes customer conversion goals. Operation statuses * are returned. * * @generated from protobuf rpc: MutateCustomerConversionGoals(google.ads.googleads.v11.services.MutateCustomerConversionGoalsRequest) returns (google.ads.googleads.v11.services.MutateCustomerConversionGoalsResponse); */ mutateCustomerConversionGoals(input: MutateCustomerConversionGoalsRequest, options?: RpcOptions): UnaryCall; } /** * Service to manage customer conversion goal. * * @generated from protobuf service google.ads.googleads.v11.services.CustomerConversionGoalService */ export declare class CustomerConversionGoalServiceClient implements ICustomerConversionGoalServiceClient, 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 customer conversion goals. Operation statuses * are returned. * * @generated from protobuf rpc: MutateCustomerConversionGoals(google.ads.googleads.v11.services.MutateCustomerConversionGoalsRequest) returns (google.ads.googleads.v11.services.MutateCustomerConversionGoalsResponse); */ mutateCustomerConversionGoals(input: MutateCustomerConversionGoalsRequest, options?: RpcOptions): UnaryCall; }