import { Factory } from './factory'; export declare const OWNER = "__owner__"; export declare function getOwner(object: object): Owner; export declare function setOwner(object: object, owner: Owner): void; export interface Owner { identify(specifier: string, referrer?: string): string; factoryFor(specifier: string, referrer?: string): Factory; lookup(specifier: string, referrer?: string): any; }