/** * Build hand history from game state and action history */ import { GameState, HandHistory } from "@pokertools/types"; /** * Build complete hand history from final game state * Call this after a hand is complete (winners determined) */ export declare function buildHandHistory(finalState: GameState, tableName?: string, gameType?: "Cash" | "Tournament"): HandHistory;