import type { INTERNAL_Store as Store } from '../vanilla/internals.js'; export declare const isPromiseLike: (x: unknown) => x is PromiseLike; export declare const createContinuablePromise: (store: Store, promise: PromiseLike, getValue: () => PromiseLike | T) => Promise;