import { Action } from "../../types"; import Store from "../../interfaces/Store"; declare type ActionMap = { [key: string]: Action; }; declare type ActionBindFunction = (store: Store) => ActionMap; export declare function useActions(actions: ActionBindFunction): ActionMap; export {};