import { CallToolResult } from "../../../../confluent/schema.js"; import { BaseToolHandler, ToolConfig } from "../../../../confluent/tools/base-tools.js"; import { ServerRuntime } from "../../../../server-runtime.js"; /** * Handler for retrieving Kafka topic configurations through Confluent Cloud REST API. * This implementation uses Confluent's REST API endpoints to fetch topic configuration * details that aren't directly accessible through the native Kafka admin client API. */ export declare class GetTopicConfigHandler extends BaseToolHandler { handle(runtime: ServerRuntime, toolArguments: Record): Promise; getToolConfig(): ToolConfig; readonly predicate: import("../../../../confluent/tools/connection-predicates.js").ConnectionPredicate; } //# sourceMappingURL=get-topic-config.d.ts.map