import { type GameData } from '../contexts/gameUpdates';
export declare const gameWathcer: {
    subscribe: (key: string, cb: (value: GameData) => void) => () => void;
    dispatch: (key: string, value: GameData) => void;
};
