import { Store, StoreOptions } from 'vuex';
export declare function createStore<S>(options: StoreOptions<S>): Store<S>;
export declare function useStore<S = any>(): Store<S>;
