import { Action } from "../../types"; import Store from "../../interfaces/Store"; declare type mapToProps = (state: object, ownProps?: object) => object; export declare function getActions(store: Store, actions: { [key: string]: Action; }): { [x: string]: (...args: any[]) => void | Promise; }; export declare function connect(component: any, store: Store, mapToProps: mapToProps): void; export {};