import { Context, StoreContainer } from './interface'; import { StandardGameAction } from './standardActions'; export type ReducerType = (ctx: Context, data: StateType, action: ActionType | StandardGameAction) => StateType | Partial; export declare function createComponentStore(initialState: StateType, reducerAction: ReducerType): StoreContainer;