import Store from "./store/store";
declare class MobiusApp extends HTMLElement {
    static appStoreReference: Record<string, Store>;
    constructor();
    private createMemory;
    getMemory(provider: string): Store;
}
export default MobiusApp;
