import { GameState } from "@pokertools/types"; /** * Calculate rake for a pot amount, respecting global per-hand rake cap * * @param state Current game state * @param potAmount Amount in the pot to calculate rake from * @param rakeTakenSoFar Total rake already taken this hand (for cap enforcement) * @returns Object with rake amount and whether cap was hit */ export declare function calculateRake(state: GameState, potAmount: number, rakeTakenSoFar?: number): { rake: number; capReached: boolean; };