import { z } from "zod"; //#region source/date.types.d.ts declare const StrDate: z.ZodString; type StrDate = z.infer; declare const StrDateTime: z.ZodString; type StrDateTime = z.infer; declare const StrDateTimeMs: z.ZodString; type StrDateTimeMs = z.infer; //#endregion export { StrDate, StrDateTime, StrDateTimeMs };