import z from "zod/v4"; /** * Foundation schema for all score types. Used for ingestion and public API. Supports trace, observation and session scores. * Needs to be extended with with score data specific schema (numeric, categorical, boolean) * @see {@link NumericData}, {@link CategoricalData}, {@link BooleanData} */ export declare const PostScoreBodyFoundationSchema: z.ZodObject<{ id: z.ZodOptional>; name: z.ZodString; traceId: z.ZodOptional>; sessionId: z.ZodOptional>; datasetRunId: z.ZodOptional>; observationId: z.ZodOptional>; comment: z.ZodOptional>; metadata: z.ZodOptional>>>; environment: z.ZodDefault; }, z.core.$strip>; //# sourceMappingURL=shared.d.ts.map