import { PokerEngineError } from "./poker-engine-error"; /** * Critical error indicating state corruption or invariant violation * When this occurs, the table should be FROZEN immediately */ export declare class CriticalStateError extends PokerEngineError { constructor(message: string, context?: Record); }