/** * Returns a promise that resolves after the given duration. Basically a setTimeout that returns a promise. * @param duration - in ms * * @category Time */ export declare function timeout(duration: number): Promise; /** * Returns the current time in milliseconds. If performance.now() is available, it is used, otherwise Date.now() is used. * * @category Time */ export declare function now(): number; //# sourceMappingURL=time.d.ts.map