import type { RpcTransport } from "@protobuf-ts/runtime-rpc";
import type { ServiceInfo } from "@protobuf-ts/runtime-rpc";
import type { RegenerateShareableLinkIdResponse } from "./third_party_app_analytics_link_service";
import type { RegenerateShareableLinkIdRequest } from "./third_party_app_analytics_link_service";
import type { UnaryCall } from "@protobuf-ts/runtime-rpc";
import type { RpcOptions } from "@protobuf-ts/runtime-rpc";
/**
 * This service allows management of links between Google Ads and third party
 * app analytics.
 *
 * @generated from protobuf service google.ads.googleads.v11.services.ThirdPartyAppAnalyticsLinkService
 */
export interface IThirdPartyAppAnalyticsLinkServiceClient {
    /**
     * Regenerate ThirdPartyAppAnalyticsLink.shareable_link_id that should be
     * provided to the third party when setting up app analytics.
     *
     * List of thrown errors:
     *   [AuthenticationError]()
     *   [AuthorizationError]()
     *   [HeaderError]()
     *   [InternalError]()
     *   [QuotaError]()
     *   [RequestError]()
     *
     * @generated from protobuf rpc: RegenerateShareableLinkId(google.ads.googleads.v11.services.RegenerateShareableLinkIdRequest) returns (google.ads.googleads.v11.services.RegenerateShareableLinkIdResponse);
     */
    regenerateShareableLinkId(input: RegenerateShareableLinkIdRequest, options?: RpcOptions): UnaryCall<RegenerateShareableLinkIdRequest, RegenerateShareableLinkIdResponse>;
}
/**
 * This service allows management of links between Google Ads and third party
 * app analytics.
 *
 * @generated from protobuf service google.ads.googleads.v11.services.ThirdPartyAppAnalyticsLinkService
 */
export declare class ThirdPartyAppAnalyticsLinkServiceClient implements IThirdPartyAppAnalyticsLinkServiceClient, 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);
    /**
     * Regenerate ThirdPartyAppAnalyticsLink.shareable_link_id that should be
     * provided to the third party when setting up app analytics.
     *
     * List of thrown errors:
     *   [AuthenticationError]()
     *   [AuthorizationError]()
     *   [HeaderError]()
     *   [InternalError]()
     *   [QuotaError]()
     *   [RequestError]()
     *
     * @generated from protobuf rpc: RegenerateShareableLinkId(google.ads.googleads.v11.services.RegenerateShareableLinkIdRequest) returns (google.ads.googleads.v11.services.RegenerateShareableLinkIdResponse);
     */
    regenerateShareableLinkId(input: RegenerateShareableLinkIdRequest, options?: RpcOptions): UnaryCall<RegenerateShareableLinkIdRequest, RegenerateShareableLinkIdResponse>;
}
