import { GameResult } from "../../types/types"; interface GameResultWindowProps { result: GameResult | null; currency: string; className?: string; } export declare function GameResultWindow({ result, currency, className }: GameResultWindowProps): import("react/jsx-runtime").JSX.Element; export {};