/** @module Interface wasi:clocks/wall-clock@0.2.3 **/ export function now(): Datetime; export function resolution(): Datetime; export interface Datetime { seconds: bigint, nanoseconds: number, }