export declare const generateNonce: (len?: number) => string; export declare function hasProp(data: unknown, prop: K): data is Record; export declare function isRecord(data: unknown): data is Record; export declare function isIterable(obj: unknown): obj is Iterable; export declare function isAsyncIterable(obj: unknown): obj is AsyncIterable; export declare function all(it: Iterable): T[]; export declare function all(it: AsyncIterable): Promise; export declare function first(it: Iterable): T | undefined; export declare function first(it: AsyncIterable): Promise;