import type { Time } from '../time';
import type { TimeUnit } from './unit';
/**
 * Create timestamp using current time at creation. Does not automatically
 * update  to match
 * @param units
 * @returns
 */
export declare function timeNow(units?: TimeUnit): Time;
