import { GameState, ShowAction, MuckAction } from "@pokertools/types"; /** * Handle SHOW action - player reveals their cards at showdown */ export declare function handleShow(state: GameState, action: ShowAction): GameState; /** * Handle MUCK action - player hides their cards at showdown */ export declare function handleMuck(state: GameState, action: MuckAction): GameState;