export declare const inspectSymbol: unique symbol; export declare function defineInspectMethod(obj: T, method: (this: T, depth: number, context: any, inspect: Function) => string): T; /** * try to call `inspect` method of an object, if not exists, call `toString`. * @returns {string} */ export declare function tryInspect(object: any): string; //# sourceMappingURL=inspect.d.ts.map