import { GameState } from "@pokertools/types"; /** * Determine winners and distribute pots */ export declare function determineWinners(state: GameState): GameState; /** * Check if hand should go to showdown */ export declare function shouldShowdown(state: GameState): boolean;