/** * Returns a unique instance id for a given object. * Ids are generated as incrementing numbers. * Ids are only unique within the scope of a given prototype. * Instances of different classes may have the same id. */ export declare const getPrototypeSpecificInstanceId: (instance: any) => number; export declare const getDebugName: (instance: any) => string; //# sourceMappingURL=instance-id.d.ts.map