/** * A safe stringify that removes circular references * ref: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Errors/Cyclic_object_value */ export declare function stringify(obj: any): string;