import { FutureInstance } from 'fluture'; /** * Coerces a non-Future into a Future that resolves to that value. If the value is already a Future, it is returned * as-is. */ export declare const toFuture: (value: T | FutureInstance) => FutureInstance; export declare const tapCancellation: >(onCancel: () => void) => (future: T) => T; //# sourceMappingURL=utils.d.ts.map