import { PokerEngineError } from "./poker-engine-error"; import { ErrorCode } from "@pokertools/types"; /** * Error indicating an illegal or invalid action * Action should be rejected and error sent to client */ export declare class IllegalActionError extends PokerEngineError { constructor(code: ErrorCode, message: string, context?: Record); }