import type { Thenable } from '../types/internal'; /** * Returns `true`, if value is array, and `false` otherwise. */ export declare function isArray(value: unknown): value is Type[]; /** * Returns `true`, if value is thenable (an object with a `then` method), and `false` otherwise. */ export declare function isThenable(value: Type): value is Type & Thenable;