import { GameState, Action } from "@pokertools/types"; /** * Pure game reducer: f(state, action) => newState * This is the heart of the poker engine * * @param state Current game state * @param action Action to apply * @returns New game state */ export declare function gameReducer(state: GameState, action: Action): GameState;