import { z } from 'zod'; export declare const CorrelationMatrixResultSchema: z.ZodObject<{ matrix: z.ZodArray>; labels: z.ZodArray; averageCorrelation: z.ZodNumber; maxCorrelation: z.ZodNumber; minCorrelation: z.ZodNumber; }, z.core.$strip>; export type CorrelationMatrixResult = z.infer;