/** * Normalize an absolute RFC 3339 timestamp without accepting JavaScript's * environment-dependent date shortcuts or calendar rollover. */ export declare function normalizeRfc3339Timestamp(value: unknown): string | undefined; export declare function isRfc3339Timestamp(value: unknown): value is string;