import BaseConfig from '../base'; import { Store, StoreOptions } from 'vuex'; declare type MutationType = Dictionary<(state: any, payload: any) => void>; declare type StoreItemType = { state: Dictionary; mutations: MutationType; }; export default class StoreConfigure implements BaseConfig { private _instance; private _builded; private _modules; constructor(); add(name: string, storeItem: StoreItemType): StoreConfigure; build(options?: StoreOptions): void; getInstance(): Store>; bind2Prototype(): void; } export {};