import { Dispatch } from './Dispatch'; import { StoreInterface } from './StoreInterface'; import { StoreState } from './State'; export declare type Thunk = (dispatch: Dispatch, getState: () => StoreState) => void;