/**
 * Type guard to check if a value is promise-like (has a `then` method).
 */
export declare function isPromiseLike<T>(value: unknown): value is Promise<T>;
//# sourceMappingURL=type-guards.d.ts.map