import type { RpcTransport } from "@protobuf-ts/runtime-rpc"; import type { ServiceInfo } from "@protobuf-ts/runtime-rpc"; import type { TargetsResponse } from "./scrape"; import type { TargetsRequest } from "./scrape"; import type { UnaryCall } from "@protobuf-ts/runtime-rpc"; import type { RpcOptions } from "@protobuf-ts/runtime-rpc"; /** * ScrapeService maintains the set of scrape targets * * @generated from protobuf service parca.scrape.v1alpha1.ScrapeService */ export interface IScrapeServiceClient { /** * Targets returns the set of scrape targets that are configured * * @generated from protobuf rpc: Targets */ targets(input: TargetsRequest, options?: RpcOptions): UnaryCall; } /** * ScrapeService maintains the set of scrape targets * * @generated from protobuf service parca.scrape.v1alpha1.ScrapeService */ export declare class ScrapeServiceClient implements IScrapeServiceClient, ServiceInfo { private readonly _transport; typeName: string; methods: import("@protobuf-ts/runtime-rpc").MethodInfo[]; options: { [extensionName: string]: import("@protobuf-ts/runtime").JsonValue; }; constructor(_transport: RpcTransport); /** * Targets returns the set of scrape targets that are configured * * @generated from protobuf rpc: Targets */ targets(input: TargetsRequest, options?: RpcOptions): UnaryCall; } //# sourceMappingURL=scrape.client.d.ts.map