type RollingAnimationProps = {
    rarities: {
        name: string;
        color: string;
        chance: number;
    }[];
};
export default function RollingAnimation({ rarities }: RollingAnimationProps): import("react/jsx-runtime").JSX.Element;
export {};
