import type { IStore } from "../types";
export declare function Module(name: string): <C extends IStore>(target: C) => C;
export declare function Module<C extends IStore>(target: C): C;
export declare function GetModule(moduleClass: any, store: any): IStore;