/** * Tool: get_session_report * Gets summary reports for one or more sessions with time-saved metrics */ import { ToolServices } from './index.js'; import { z } from 'zod'; /** * Input validation schema */ declare const GetSessionReportInputSchema: z.ZodObject<{ session_uuids: z.ZodArray; project_uuid: z.ZodString; }, "strip", z.ZodTypeAny, { project_uuid: string; session_uuids: string[]; }, { project_uuid: string; session_uuids: string[]; }>; export type GetSessionReportInput = z.infer; /** * Get session reports with summaries and metrics */ export declare function getSessionReport(services: ToolServices, args: unknown): Promise; export {};