import { z } from 'zod'; export declare const TIMESTAMP_FORMATS: readonly ["ISO", "ISODate", "time", "preciseTime", "date", "preciseDate", "dateTime"]; export declare const timestampFormatZ: z.ZodEnum<{ date: "date"; ISO: "ISO"; ISODate: "ISODate"; time: "time"; preciseTime: "preciseTime"; preciseDate: "preciseDate"; dateTime: "dateTime"; }>; export type TimestampFormat = z.infer; export declare const TIME_ZONES: readonly ["local", "UTC"]; export declare const timeZoneZ: z.ZodEnum<{ local: "local"; UTC: "UTC"; }>; export type TimeZone = z.infer; //# sourceMappingURL=types.gen.d.ts.map