import type { RpcTransport } from "@protobuf-ts/runtime-rpc";
import type { ServiceInfo } from "@protobuf-ts/runtime-rpc";
import type { MutateCustomConversionGoalsResponse } from "./custom_conversion_goal_service";
import type { MutateCustomConversionGoalsRequest } from "./custom_conversion_goal_service";
import type { UnaryCall } from "@protobuf-ts/runtime-rpc";
import type { RpcOptions } from "@protobuf-ts/runtime-rpc";
/**
 * Service to manage custom conversion goal.
 *
 * @generated from protobuf service google.ads.googleads.v11.services.CustomConversionGoalService
 */
export interface ICustomConversionGoalServiceClient {
    /**
     * Creates, updates or removes custom conversion goals. Operation statuses
     * are returned.
     *
     * @generated from protobuf rpc: MutateCustomConversionGoals(google.ads.googleads.v11.services.MutateCustomConversionGoalsRequest) returns (google.ads.googleads.v11.services.MutateCustomConversionGoalsResponse);
     */
    mutateCustomConversionGoals(input: MutateCustomConversionGoalsRequest, options?: RpcOptions): UnaryCall<MutateCustomConversionGoalsRequest, MutateCustomConversionGoalsResponse>;
}
/**
 * Service to manage custom conversion goal.
 *
 * @generated from protobuf service google.ads.googleads.v11.services.CustomConversionGoalService
 */
export declare class CustomConversionGoalServiceClient implements ICustomConversionGoalServiceClient, ServiceInfo {
    private readonly _transport;
    typeName: string;
    methods: import("@protobuf-ts/runtime-rpc").MethodInfo<any, any>[];
    options: {
        [extensionName: string]: import("@protobuf-ts/runtime").JsonValue;
    };
    constructor(_transport: RpcTransport);
    /**
     * Creates, updates or removes custom conversion goals. Operation statuses
     * are returned.
     *
     * @generated from protobuf rpc: MutateCustomConversionGoals(google.ads.googleads.v11.services.MutateCustomConversionGoalsRequest) returns (google.ads.googleads.v11.services.MutateCustomConversionGoalsResponse);
     */
    mutateCustomConversionGoals(input: MutateCustomConversionGoalsRequest, options?: RpcOptions): UnaryCall<MutateCustomConversionGoalsRequest, MutateCustomConversionGoalsResponse>;
}
