import type { IGame } from '../../types'; import { h } from 'preact'; import { PropsWithChildren } from 'preact/compat'; interface IGameListProps extends PropsWithChildren { list: IGame[]; layerName: string; routeMode: 'REDIRECT' | 'NAVIGATE'; onGameClick?: (game: IGame) => void; orientation: 'portrait' | 'landscape'; } export declare const GamesGrid: ({ list, routeMode, layerName, onGameClick, orientation, ...restProps }: IGameListProps) => h.JSX.Element; export {};