import { GameState, Action } from "@pokertools/types"; /** * Validate that an action is legal in the current game state * Throws IllegalActionError if action is invalid */ export declare function validateAction(state: GameState, action: Action): void;