/**
 * Checks if a value is a Promise.
 * @param value - The value to check.
 * @return True if the value is a Promise, false otherwise.
 */
export declare function isPromise<T>(value: unknown): value is Promise<T>;
