declare function getPrototypeString(value: unknown): string; declare function isBrowser(): boolean; declare function isNodeJs(): boolean; declare function isPlainObject(value: unknown): value is Record; declare function readStreamByChunk(readableStream: ReadableStream, callback: (value: T) => Promise | void): Promise; export { getPrototypeString, isBrowser, isNodeJs, isPlainObject, readStreamByChunk };