import { z } from "zod/mini"; //#region src/content/field.d.ts declare const TextContentSchema: z.ZodMiniObject<{ type: z.ZodMiniLiteral<"Text">; value: z.ZodMiniString; __TYPE__: z.ZodMiniLiteral<"FieldContent">; }, z.core.$strip>; declare const ColorContentSchema: z.ZodMiniObject<{ type: z.ZodMiniLiteral<"Color">; value: z.ZodMiniString; __TYPE__: z.ZodMiniLiteral<"FieldContent">; }, z.core.$strip>; declare const DateContentSchema: z.ZodMiniObject<{ type: z.ZodMiniLiteral<"Date">; value: z.ZodMiniString; __TYPE__: z.ZodMiniLiteral<"FieldContent">; }, z.core.$strip>; declare const TimestampContentSchema: z.ZodMiniObject<{ type: z.ZodMiniLiteral<"Timestamp">; value: z.ZodMiniString; __TYPE__: z.ZodMiniLiteral<"FieldContent">; }, z.core.$strip>; declare const NumberContentSchema: z.ZodMiniObject<{ type: z.ZodMiniLiteral<"Number">; value: z.ZodMiniString; __TYPE__: z.ZodMiniLiteral<"FieldContent">; }, z.core.$strip>; declare const RangeContentSchema: z.ZodMiniObject<{ type: z.ZodMiniLiteral<"Range">; value: z.ZodMiniString; __TYPE__: z.ZodMiniLiteral<"FieldContent">; }, z.core.$strip>; declare const SelectContentSchema: z.ZodMiniObject<{ type: z.ZodMiniLiteral<"Select">; value: z.ZodMiniString; __TYPE__: z.ZodMiniLiteral<"FieldContent">; }, z.core.$strip>; type TextContent = z.infer; type ColorContent = z.infer; type DateContent = z.infer; type TimestampContent = z.infer; type NumberContent = z.infer; type RangeContent = z.infer; type SelectContent = z.infer; type FieldContent = TextContent | ColorContent | DateContent | TimestampContent | NumberContent | RangeContent | SelectContent; //#endregion export { ColorContent, DateContent, FieldContent, NumberContent, RangeContent, SelectContent, TextContent, TimestampContent }; //# sourceMappingURL=field.d.ts.map