/**
 * Mimics the behavior of Python's `id()` function. The idea is that often times
 * we can't use e.g. obj.constructor.name, because it got mangled by e.g.
 * UglifyJS during bundling. But to build cache keys, we still need some
 * per-object identifier.
 */
export declare function objectId(objIn: object): number;
//# sourceMappingURL=objectId.d.ts.map