import { z } from 'zod'; export declare const CovarianceMatrixResultSchema: z.ZodObject<{ matrix: z.ZodArray>; labels: z.ZodArray; variances: z.ZodArray; averageCovariance: z.ZodNumber; }, z.core.$strip>; export type CovarianceMatrixResult = z.infer;