import type { Inspect, Options } from "./types.d.cts"; export type { Options } from "./types.d.cts"; export declare const inspect: (value: unknown, options_?: Partial) => string; export declare const registerConstructor: (constructor: Function, inspector: Inspect) => boolean; export declare const registerStringTag: (stringTag: string, inspector: Inspect) => boolean;