import type { RpcTransport } from "@protobuf-ts/runtime-rpc";
import type { ServiceInfo } from "@protobuf-ts/runtime-rpc";
import type { MutateUserListsResponse } from "./user_list_service";
import type { MutateUserListsRequest } from "./user_list_service";
import type { UnaryCall } from "@protobuf-ts/runtime-rpc";
import type { RpcOptions } from "@protobuf-ts/runtime-rpc";
/**
 * Service to manage user lists.
 *
 * @generated from protobuf service google.ads.googleads.v11.services.UserListService
 */
export interface IUserListServiceClient {
    /**
     * Creates or updates user lists. Operation statuses are returned.
     *
     * List of thrown errors:
     *   [AuthenticationError]()
     *   [AuthorizationError]()
     *   [CollectionSizeError]()
     *   [DatabaseError]()
     *   [DistinctError]()
     *   [FieldError]()
     *   [FieldMaskError]()
     *   [HeaderError]()
     *   [InternalError]()
     *   [MutateError]()
     *   [NewResourceCreationError]()
     *   [NotAllowlistedError]()
     *   [NotEmptyError]()
     *   [OperationAccessDeniedError]()
     *   [QuotaError]()
     *   [RangeError]()
     *   [RequestError]()
     *   [StringFormatError]()
     *   [StringLengthError]()
     *   [UserListError]()
     *
     * @generated from protobuf rpc: MutateUserLists(google.ads.googleads.v11.services.MutateUserListsRequest) returns (google.ads.googleads.v11.services.MutateUserListsResponse);
     */
    mutateUserLists(input: MutateUserListsRequest, options?: RpcOptions): UnaryCall<MutateUserListsRequest, MutateUserListsResponse>;
}
/**
 * Service to manage user lists.
 *
 * @generated from protobuf service google.ads.googleads.v11.services.UserListService
 */
export declare class UserListServiceClient implements IUserListServiceClient, 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 or updates user lists. Operation statuses are returned.
     *
     * List of thrown errors:
     *   [AuthenticationError]()
     *   [AuthorizationError]()
     *   [CollectionSizeError]()
     *   [DatabaseError]()
     *   [DistinctError]()
     *   [FieldError]()
     *   [FieldMaskError]()
     *   [HeaderError]()
     *   [InternalError]()
     *   [MutateError]()
     *   [NewResourceCreationError]()
     *   [NotAllowlistedError]()
     *   [NotEmptyError]()
     *   [OperationAccessDeniedError]()
     *   [QuotaError]()
     *   [RangeError]()
     *   [RequestError]()
     *   [StringFormatError]()
     *   [StringLengthError]()
     *   [UserListError]()
     *
     * @generated from protobuf rpc: MutateUserLists(google.ads.googleads.v11.services.MutateUserListsRequest) returns (google.ads.googleads.v11.services.MutateUserListsResponse);
     */
    mutateUserLists(input: MutateUserListsRequest, options?: RpcOptions): UnaryCall<MutateUserListsRequest, MutateUserListsResponse>;
}
