/** * Tool: get_session_summary * Gets detailed analysis and scoring for a session */ import { ToolServices } from './index.js'; import { z } from 'zod'; /** * Input validation schema */ declare const GetSessionSummaryInputSchema: z.ZodObject<{ session_uuid: z.ZodString; project_uuid: z.ZodOptional; }, "strip", z.ZodTypeAny, { session_uuid: string; project_uuid?: string | undefined; }, { session_uuid: string; project_uuid?: string | undefined; }>; export type GetSessionSummaryInput = z.infer; /** * Get session summary with quality scores */ export declare function getSessionSummary(services: ToolServices, args: unknown): Promise; export {};