/** * Tool: get_rca_score * Gets the quality score for an RCA investigation */ import { ToolServices } from './index.js'; import { z } from 'zod'; /** * Input validation schema */ declare const GetRCAScoreInputSchema: 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 GetRCAScoreInput = z.infer; /** * Get quality score for an RCA investigation * Returns accuracy, completeness, and qualitative feedback scores */ export declare function getRCAScore(services: ToolServices, args: unknown): Promise; export {};