import React from 'react'; import GamesListModel from 'fansunited-sdk-esm/Core/Namespaces/TopX/Models/Games/GamesListModel'; type CustomTableProps = { pageGames: Map; pageCount: number; getGames: () => void; getPreviousPage: () => void; getNextPage: () => void; onClickEdit: (id: string) => void; onClickWinners: (game: GamesListModel) => void; }; declare const CustomTable: React.FC; export default CustomTable;