import { Manager, INewable, Initializable } from "./Factory"; export declare class StoreManager extends Manager { /** * Get an instance of the Store. */ static GetStore(storeClass: INewable, instanceId?: string): T; static CreateStore(storeClass: INewable, instanceId: string, args: U): T; static DeleteStore(storeClass: INewable, instanceId?: string): void; static dispose(): void; }