import type { Readable } from 'node:stream'; export declare function formatError(error: unknown): string; export declare function isPlainObject(value: unknown): value is Record; export declare function cloneValue(value: T): T; export declare function destroyQuietly(stream: Readable): void; export declare function mergeDeep>(base: T, patch: Record): T;