/**
 * Generates a ZEUS time hash using BLAKE3.
 * @param timestamp A valid ISO timestamp or UNIX time.
 * @returns A deterministic hash for the given timestamp.
 */
export declare function generateZeusHash(timestamp: string | number): Promise<string>;
