export declare const isPromise: (p: unknown) => p is Promise; export declare const isFunction: (f: unknown) => f is () => F; export declare const omit: (obj: T, ...keys: K) => { [P in Exclude]: T[P]; }; export declare const runWithRealTimers: (callback: () => T | Promise) => T | Promise; export declare const hasV3: () => boolean; export declare const sleep: (time: number) => Promise;