/** * Make the given argument of unknown type into something human-readable. * For Error objects, you can specify options to make the string more verbose. */ declare function toReadableString(u: unknown, options?: { includeStack?: boolean; includeErrorProps?: boolean; }): string; export { toReadableString };