// noinspection ES6UnusedImports import EasyPeasy, { Actions, State } from 'easy-peasy'; import { ApplicationStore } from '@/state'; declare module 'easy-peasy' { export function useStoreState( mapState: (state: State) => Result, ): Result; export function useStoreActions( mapActions: (actions: Actions) => Result, ): Result; }