import { GameState } from "@pokertools/types"; /** * Progress to next street * - Collects bets into pots * - Deals community cards * - Resets action */ export declare function progressStreet(state: GameState): GameState; /** * Check if we should progress to next street * (All players have acted and matched bets) */ export declare function shouldProgressStreet(state: GameState): boolean;