import { Store } from 'redux'; import { Action } from './action'; import { ReducerState } from './reducer'; export type WaykeStore = Store; export declare const createStore: () => Store;