import { Awaitable, HostAdaptor } from "../../"; export declare function copyHostAdaptor(hostAdaptor: HostAdaptor): HostAdaptor; export declare const delay: (fn: (...args: T) => Awaitable, delayMS: number) => (...args: T) => Promise; export declare const randomDelay: (fn: (...args: T) => Awaitable, delayMinMs: number, delayMaxMs: number) => (...args: T) => Promise; export declare const modifyResult: (fn: (...args: T) => Awaitable, modificationCallBack: (val: R, ...args: T) => R) => (...args: T) => Promise; export declare const modifyArguments: (fn: (...args: T) => Awaitable, modificationCallBack: (...val: T) => T) => (...args: T) => Awaitable;