/** * Serializes access to a global singleton value, with the first caller creating the value. * * @public */ export declare function getOrCreateGlobalSingleton(id: string, supplier: () => T): T;