/**
* Type guard to check if a value is promise-like (has a `.then` method)
* @paramvalue - The value to check
* @returns True if the value is promise-like, false otherwise
*/exportdeclarefunctionisPromiseLike(value: unknown): value is PromiseLike<unknown>;