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