/** * Helper method recursively executing the callback against all own properties. * Only non-function object values will have the callback executed. * If the same reference is encountered after the first time, it will be skipped. * * @internal */ export declare const visit: (root: object, callback: (value: object) => void) => void; //# sourceMappingURL=visit.d.ts.map