import { Action } from '@gamepark/rules-api'; import { GameNotification } from './GameNotification'; export type MoveUndoneNotification = GameNotification & { actionId: string | null; moveUndone: number; }; export declare function moveUndoneNotification(action: Action, moveUndone: number): MoveUndoneNotification; export declare function isMoveUndoneNotification(notification: GameNotification): notification is MoveUndoneNotification;