declare function singleton<Value>(name: string, valueFactory: () => Value): Value;

export { singleton };
