import { z } from "zod/v4"; /** * Schema for review data. * Contains the rating and review content for an agent. */ export declare const ReviewSchema: z.ZodObject<{ registrationId: z.ZodString; rating: z.ZodDefault; review: z.ZodString; }, z.core.$strip>; /** Type alias for validated Review */ export type Review = z.output; //# sourceMappingURL=review.d.ts.map