import { h } from 'preact'; import { IRecommendationButton, IGame } from '../types'; import { RecommendModalOnCloseParams } from '../index'; declare const RecommendedGuidePanel: (params: { games: IGame[]; title: string; buttons: IRecommendationButton[]; onClose?: (params: RecommendModalOnCloseParams) => void; }) => h.JSX.Element; export { RecommendedGuidePanel };