import type { RpcTransport } from "@protobuf-ts/runtime-rpc";
import type { ServiceInfo } from "@protobuf-ts/runtime-rpc";
import type { MutateAdGroupsResponse } from "./ad_group_service";
import type { MutateAdGroupsRequest } from "./ad_group_service";
import type { UnaryCall } from "@protobuf-ts/runtime-rpc";
import type { RpcOptions } from "@protobuf-ts/runtime-rpc";
/**
 * Service to manage ad groups.
 *
 * @generated from protobuf service google.ads.googleads.v11.services.AdGroupService
 */
export interface IAdGroupServiceClient {
    /**
     * Creates, updates, or removes ad groups. Operation statuses are returned.
     *
     * List of thrown errors:
     *   [AdGroupError]()
     *   [AdxError]()
     *   [AuthenticationError]()
     *   [AuthorizationError]()
     *   [BiddingError]()
     *   [BiddingStrategyError]()
     *   [DatabaseError]()
     *   [DateError]()
     *   [DistinctError]()
     *   [FieldError]()
     *   [FieldMaskError]()
     *   [HeaderError]()
     *   [IdError]()
     *   [InternalError]()
     *   [ListOperationError]()
     *   [MultiplierError]()
     *   [MutateError]()
     *   [NewResourceCreationError]()
     *   [NotEmptyError]()
     *   [NullError]()
     *   [OperationAccessDeniedError]()
     *   [OperatorError]()
     *   [QuotaError]()
     *   [RangeError]()
     *   [RequestError]()
     *   [ResourceCountLimitExceededError]()
     *   [SettingError]()
     *   [SizeLimitError]()
     *   [StringFormatError]()
     *   [StringLengthError]()
     *   [UrlFieldError]()
     *
     * @generated from protobuf rpc: MutateAdGroups(google.ads.googleads.v11.services.MutateAdGroupsRequest) returns (google.ads.googleads.v11.services.MutateAdGroupsResponse);
     */
    mutateAdGroups(input: MutateAdGroupsRequest, options?: RpcOptions): UnaryCall<MutateAdGroupsRequest, MutateAdGroupsResponse>;
}
/**
 * Service to manage ad groups.
 *
 * @generated from protobuf service google.ads.googleads.v11.services.AdGroupService
 */
export declare class AdGroupServiceClient implements IAdGroupServiceClient, 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 ad groups. Operation statuses are returned.
     *
     * List of thrown errors:
     *   [AdGroupError]()
     *   [AdxError]()
     *   [AuthenticationError]()
     *   [AuthorizationError]()
     *   [BiddingError]()
     *   [BiddingStrategyError]()
     *   [DatabaseError]()
     *   [DateError]()
     *   [DistinctError]()
     *   [FieldError]()
     *   [FieldMaskError]()
     *   [HeaderError]()
     *   [IdError]()
     *   [InternalError]()
     *   [ListOperationError]()
     *   [MultiplierError]()
     *   [MutateError]()
     *   [NewResourceCreationError]()
     *   [NotEmptyError]()
     *   [NullError]()
     *   [OperationAccessDeniedError]()
     *   [OperatorError]()
     *   [QuotaError]()
     *   [RangeError]()
     *   [RequestError]()
     *   [ResourceCountLimitExceededError]()
     *   [SettingError]()
     *   [SizeLimitError]()
     *   [StringFormatError]()
     *   [StringLengthError]()
     *   [UrlFieldError]()
     *
     * @generated from protobuf rpc: MutateAdGroups(google.ads.googleads.v11.services.MutateAdGroupsRequest) returns (google.ads.googleads.v11.services.MutateAdGroupsResponse);
     */
    mutateAdGroups(input: MutateAdGroupsRequest, options?: RpcOptions): UnaryCall<MutateAdGroupsRequest, MutateAdGroupsResponse>;
}
