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