/** * Types for the CommonGrants.Types namespace in the @common-grants/core library. * * These are scalar values that are used to define the types in the CommonGrants.Types namespace. * * @packageDocumentation */ import { z } from "zod"; export declare const UuidSchema: z.ZodUUID; export declare const DecimalStringSchema: z.ZodString; /** Schema for UTC datetime fields (accepts an ISO string or a `Date`; outputs a `Date`) */ export declare const UTCDateTimeSchema: z.ZodPreprocess>>; /** Schema for ISO date format: YYYY-MM-DD (accepts a YYYY-MM-DD string or a `Date`; outputs a `Date`) */ export declare const ISODateSchema: z.ZodPreprocess>>; /** Schema for ISO time format: HH:MM:SS with optional fractional seconds and timezone (RFC 3339 partial-time) */ export declare const ISOTimeSchema: z.ZodPreprocess; /** Schema for offset datetime fields (accepts an ISO 8601 offset string or a `Date`; outputs a `Date`) */ export declare const OffsetDateTimeSchema: z.ZodPreprocess>>; //# sourceMappingURL=types.d.ts.map