import type { IsoDuration } from '../../domain.objects/IsoDuration'; /** * .what = pauses execution for specified duration * .why = enables timed delays in async flows */ export declare const sleep: (ms: number | IsoDuration) => Promise;