import { GameNotification, Player } from '../Types'; export interface NotificationsData { notifications: GameNotification[]; notificationsIndex: number; players: Player[]; serverTime?: number; roundTripStart?: number; } export declare const receiveNotifications: import("@reduxjs/toolkit").ActionCreatorWithPayload, string>;