import type { RpcTransport } from "@protobuf-ts/runtime-rpc";
import type { ServiceInfo } from "@protobuf-ts/runtime-rpc";
import type { MutateRemarketingActionsResponse } from "./remarketing_action_service";
import type { MutateRemarketingActionsRequest } from "./remarketing_action_service";
import type { UnaryCall } from "@protobuf-ts/runtime-rpc";
import type { RpcOptions } from "@protobuf-ts/runtime-rpc";
/**
 * Service to manage remarketing actions.
 *
 * @generated from protobuf service google.ads.googleads.v11.services.RemarketingActionService
 */
export interface IRemarketingActionServiceClient {
    /**
     * Creates or updates remarketing actions. Operation statuses are returned.
     *
     * List of thrown errors:
     *   [AuthenticationError]()
     *   [AuthorizationError]()
     *   [ConversionActionError]()
     *   [HeaderError]()
     *   [InternalError]()
     *   [QuotaError]()
     *   [RequestError]()
     *
     * @generated from protobuf rpc: MutateRemarketingActions(google.ads.googleads.v11.services.MutateRemarketingActionsRequest) returns (google.ads.googleads.v11.services.MutateRemarketingActionsResponse);
     */
    mutateRemarketingActions(input: MutateRemarketingActionsRequest, options?: RpcOptions): UnaryCall<MutateRemarketingActionsRequest, MutateRemarketingActionsResponse>;
}
/**
 * Service to manage remarketing actions.
 *
 * @generated from protobuf service google.ads.googleads.v11.services.RemarketingActionService
 */
export declare class RemarketingActionServiceClient implements IRemarketingActionServiceClient, 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 remarketing actions. Operation statuses are returned.
     *
     * List of thrown errors:
     *   [AuthenticationError]()
     *   [AuthorizationError]()
     *   [ConversionActionError]()
     *   [HeaderError]()
     *   [InternalError]()
     *   [QuotaError]()
     *   [RequestError]()
     *
     * @generated from protobuf rpc: MutateRemarketingActions(google.ads.googleads.v11.services.MutateRemarketingActionsRequest) returns (google.ads.googleads.v11.services.MutateRemarketingActionsResponse);
     */
    mutateRemarketingActions(input: MutateRemarketingActionsRequest, options?: RpcOptions): UnaryCall<MutateRemarketingActionsRequest, MutateRemarketingActionsResponse>;
}
