import type { Waitable } from './types/waitable'; /** Checks if the specified value is a waitable */ export declare const isWaitable: (value: any) => value is Waitable; /** Returns a readonly waitable if the specified value is a waitable. Otherwise, returns undefined */ export declare const ifWaitable: (value: any) => Waitable | undefined; //# sourceMappingURL=utils.d.ts.map