import type { Time } from '../time';
import type { TimeUnit } from './unit';
/**
 * Create a Time snapshot of the current system clock in `units`
 * (defaults to seconds). The returned Time holds a frozen value
 * captured at call time and does not auto-update.
 */
export declare function timeNow(units?: TimeUnit): Time;
