//#region src/inspect.d.ts type Style = 'special' | 'number' | 'bigint' | 'boolean' | 'undefined' | 'null' | 'string' | 'symbol' | 'date' | 'regexp' | 'module'; interface InspectOptions { depth?: number | null | undefined; colors?: boolean | undefined; maxArrayLength?: number | null | undefined; stylize(text: string, styleType: Style): string; } type Inspect = (obj: unknown, options: InspectOptions) => string; declare const CUSTOM_INSPECT: unique symbol; //#endregion export { CUSTOM_INSPECT, Inspect, InspectOptions, Style };