import { Game } from '../game.interfaces'; import { Action, DeclareBomb } from '../game.actions'; export declare function can(state: Game, action: Action): boolean; export declare function isGameFinished(state: Game): boolean; export declare function playersHaveEnoughtCardPoints(state: Game): boolean; export declare function canDeclareBomb(state: Game, {player}: DeclareBomb): boolean;