type WinningPopupProps = {
    item: {
        name: string;
        rarity: string;
        image: string;
    };
    onClose: () => void;
};
export default function WinningPopup({ item, onClose }: WinningPopupProps): import("react/jsx-runtime").JSX.Element;
export {};
