import type { ConfluentRestClient } from "../confluent/client-manager.js"; export declare function resolveKafkaBootstrap(cloudClient: ConfluentRestClient, clusterId: string, envId: string): Promise; export declare function resolveKafkaRestEndpoint(cloudClient: ConfluentRestClient, clusterId: string, envId: string): Promise; export declare function resolveSchemaRegistryEndpoint(cloudClient: ConfluentRestClient, clusterId: string, envId: string): Promise; /** * Resolves the cloud provider + region of a Flink compute pool, used to derive * the regional Flink REST host under OAuth. The Flink REST URL is regional * (`https://flink...`), so unlike the cloud/ * telemetry surfaces it can't be wired once at construction — it has to be * resolved per call from the compute pool the agent is targeting. */ export declare function resolveFlinkComputePoolRegion(cloudClient: ConfluentRestClient, computePoolId: string, envId: string): Promise<{ cloud: string; region: string; }>; export declare function resolveSchemaRegistryClusterId(cloudClient: ConfluentRestClient, envId: string): Promise; //# sourceMappingURL=oauth-resource-resolvers.d.ts.map