/** * Datetime utilities — branded ISO 8601 datetime Zod schema and factory. * * @module */ import { z } from 'zod'; export declare const Datetime: z.core.$ZodBranded; export type Datetime = z.infer; /** Returns an ISO 8601 datetime string for the current time. */ export declare const get_datetime_now: () => Datetime; export declare const DatetimeNow: z.ZodDefault>; export type DatetimeNow = z.infer; //# sourceMappingURL=datetime.d.ts.map