import { Server } from '@modelcontextprotocol/sdk/server/index.js'; import { z } from 'zod'; import type { IAgentOrchestratorClient } from '../orchestrator-client/orchestrator-client.js'; export declare const GetConfigsSchema: z.ZodObject<{ force_refresh: z.ZodOptional; }, "strip", z.ZodTypeAny, { force_refresh?: boolean | undefined; }, { force_refresh?: boolean | undefined; }>; export declare function getConfigsTool(_server: Server, clientFactory: () => IAgentOrchestratorClient): { name: string; description: string; inputSchema: { type: "object"; properties: { force_refresh: { type: string; description: string; }; }; required: never[]; }; handler: (args: unknown) => Promise<{ content: { type: string; text: string; }[]; } | { content: { type: string; text: string; }[]; isError: boolean; }>; }; //# sourceMappingURL=get-configs.d.ts.map