import type { RpcTransport } from "@protobuf-ts/runtime-rpc";
import type { ServiceInfo } from "@protobuf-ts/runtime-rpc";
import type { MutateBiddingSeasonalityAdjustmentsResponse } from "./bidding_seasonality_adjustment_service";
import type { MutateBiddingSeasonalityAdjustmentsRequest } from "./bidding_seasonality_adjustment_service";
import type { UnaryCall } from "@protobuf-ts/runtime-rpc";
import type { RpcOptions } from "@protobuf-ts/runtime-rpc";
/**
 * Service to manage bidding seasonality adjustments.
 *
 * @generated from protobuf service google.ads.googleads.v11.services.BiddingSeasonalityAdjustmentService
 */
export interface IBiddingSeasonalityAdjustmentServiceClient {
    /**
     * Creates, updates, or removes seasonality adjustments.
     * Operation statuses are returned.
     *
     * @generated from protobuf rpc: MutateBiddingSeasonalityAdjustments(google.ads.googleads.v11.services.MutateBiddingSeasonalityAdjustmentsRequest) returns (google.ads.googleads.v11.services.MutateBiddingSeasonalityAdjustmentsResponse);
     */
    mutateBiddingSeasonalityAdjustments(input: MutateBiddingSeasonalityAdjustmentsRequest, options?: RpcOptions): UnaryCall<MutateBiddingSeasonalityAdjustmentsRequest, MutateBiddingSeasonalityAdjustmentsResponse>;
}
/**
 * Service to manage bidding seasonality adjustments.
 *
 * @generated from protobuf service google.ads.googleads.v11.services.BiddingSeasonalityAdjustmentService
 */
export declare class BiddingSeasonalityAdjustmentServiceClient implements IBiddingSeasonalityAdjustmentServiceClient, 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 seasonality adjustments.
     * Operation statuses are returned.
     *
     * @generated from protobuf rpc: MutateBiddingSeasonalityAdjustments(google.ads.googleads.v11.services.MutateBiddingSeasonalityAdjustmentsRequest) returns (google.ads.googleads.v11.services.MutateBiddingSeasonalityAdjustmentsResponse);
     */
    mutateBiddingSeasonalityAdjustments(input: MutateBiddingSeasonalityAdjustmentsRequest, options?: RpcOptions): UnaryCall<MutateBiddingSeasonalityAdjustmentsRequest, MutateBiddingSeasonalityAdjustmentsResponse>;
}
