/** * Wraps a value in an asynchronous function. * * @typeParam T - The type of value being wrapped * @param value - The value to be wrapped * @returns A function that returns a promise resolving to the value */ export declare function wrapAsync(value: T): () => Promise;