import { z } from "zod/v3"; //#region lib/util/timestamp.d.ts type Timestamp = string & { __timestamp: never; }; declare function asTimestamp(input: unknown): Timestamp | null; declare const Timestamp: z.ZodEffects; declare const MaybeTimestamp: z.ZodCatch>>; //#endregion export { MaybeTimestamp, Timestamp, asTimestamp }; //# sourceMappingURL=timestamp.d.ts.map