/** * Opaque identifier for object reference management */ export declare type Token = symbol; /** * Create a token for establishing unique reference symbols * @param key a string denoting the token */ export declare const GetToken: (key?: string) => Token;