import React from "react"; export type PointEarnBadgeAlignment = "left" | "center" | "right"; export interface PointEarnBadgeProps { prefix?: string; iconUrl?: string; suffix?: string; coinsEarned?: number | string; widgetBackground?: string; alignment?: PointEarnBadgeAlignment; textColor?: string; borderColor?: string; badgeRoundness?: string | number; fontSize?: string | number; } export default function PointEarnBadge({ prefix, iconUrl, suffix, coinsEarned, widgetBackground, alignment, textColor, borderColor, badgeRoundness, fontSize, }: PointEarnBadgeProps): React.JSX.Element;