import { ActionType } from "./action"; /** * Whitelist of gameplay actions allowed through the main API endpoint. * * Management actions (SIT, ADD_CHIPS, RESERVE_SEAT) require financial checks * and must go through dedicated endpoints, not the raw action endpoint. * * **IMPORTANT**: When adding new action types to the engine, ensure they are * added to this whitelist if they should be accessible through the API. */ export declare const ALLOWED_GAMEPLAY_ACTIONS: readonly ActionType[]; export declare function isAllowedGameplayAction(type: ActionType): boolean;