/** * Zod schema for get_transcript tool parameters */ import { z } from "zod"; /** * Get transcript parameters schema */ export declare const GetTranscriptParamsSchema: z.ZodObject<{ session_id: z.ZodString; }, "strip", z.ZodTypeAny, { session_id: string; }, { session_id: string; }>; export type GetTranscriptParams = z.infer; /** * Validate get_transcript params */ export declare function validateGetTranscriptParams(params: unknown): { success: boolean; data?: GetTranscriptParams; error?: string; }; //# sourceMappingURL=get-transcript.d.ts.map