import type { Type } from 'ts-gems'; export declare function isBuiltIn(v: any): boolean; export declare function isConstructor(fn: any): fn is Type; export declare function isIterable(x: any): x is Iterable | IterableIterator; export declare function isAsyncIterable(x: any): x is AsyncIterable | AsyncIterableIterator;