/** In an app only have one Vue Component of it at all, like OuiXXXActivator */
export declarefunctionuseSingleton(name: string): boolean;
/** In an app can only have one object of this type */
export declarefunctioncreateSingleton<T>(name: string, create: () => T): T;