import type { IsoTimestamp } from '../domain.objects/IsoTimestamp'; /** * .what = converts a Date to ISO 8601 timestamp string * .why = ensures consistent timestamp format across the system */ export declare const asIsoTimestamp: (date: Date) => IsoTimestamp;