import type { InspectOptions } from 'node:util'; import type { CommandUsage } from './index.ts'; export declare const formatOptions: { readonly depth: number; readonly maxArrayLength: number; readonly maxStringLength: number; }; export type ErrorFormatOptions = InspectOptions & { maxLines?: number; }; export type Formatter = (arg: unknown, options?: ErrorFormatOptions) => string; export declare const indent: (lines: string, num?: number) => string; export declare const printErr: (e: unknown, usage: CommandUsage, stderr: (...a: string[]) => void, baseOpts?: ErrorFormatOptions) => void;