import { GameState, DealAction } from "@pokertools/types"; /** * Deal a new hand * - Shuffles deck * - Posts blinds and antes * - Deals 2 cards to each active player * - Sets action to first to act */ export declare function handleDeal(state: GameState, action: DealAction): GameState;