import { IThunkAction } from '../simple-redux'; import { Store } from '../store'; export declare const INITIALIZE_GAME_ACTION = "INITIALIZE_GAME_ACTION"; export declare class InitializeGameAction implements IThunkAction { payload: { matrixSizeX: number; matrixSizeY: number; }; readonly type = "INITIALIZE_GAME_ACTION"; constructor(payload: { matrixSizeX: number; matrixSizeY: number; }); executeThunk(store: Store): void; }