/** * Delay execution of specific code by using promise await api * * ```js * await delay(4000) * ``` * @param time time to wait */ export declare const delay: (time: number) => Promise;