import React, { Dispatch, SetStateAction } from 'react'; import GameByIdModel from 'fansunited-sdk-esm/Core/Namespaces/TopX/Models/Games/GameByIdModel'; type ManageGameProps = { clientId: string; gameById: GameByIdModel; toggleManageMode: () => void; getGames: () => void; clearGameById: () => void; setGameById: Dispatch>; parentGame?: GameByIdModel; relatedGames?: GameByIdModel[]; loadParent?: () => void; }; declare const ManageGame: React.FC; export default ManageGame;