interface RankTierCardProps { /** Section header above the tier icon, e.g. `"E11 A2"`. */ seasonTitle: string; /** Competitive tier display icon URL. */ tierIcon?: string; /** Tier name, e.g. `"Diamond 2"`. */ tierName?: string; /** Tier name accent color from the competitive tier API, with or without the leading `#`. */ tierColor?: string; /** Ranked Rating value. */ rankedRating?: number; /** Suffix shown after the RR value (default `"RR"`). Pass `""` to hide. */ rrLabel?: string; /** Optional leaderboard position shown as `Rank {n}` below the rank summary. */ leaderboardRank?: number; /** Show the ranked rating row under the tier name. */ showRankedRating?: boolean; /** Show the skeleton placeholder instead of the real content. */ isLoading?: boolean; /** Extra classes merged onto the outer column wrapper. */ className?: string; /** Extra classes merged onto the icon/name/rating body wrapper. */ bodyClassName?: string; } /** * Rank tier summary column — season label, tier icon, tier name, and RR, * stacked and horizontally centered. Composes into the career rank card or * any other surface that needs to display a player's current tier. * * Data-free: the consumer resolves tier metadata. */ declare function RankTierCard({ seasonTitle, tierIcon, tierName, tierColor, rankedRating, rrLabel, leaderboardRank, showRankedRating, isLoading, className, bodyClassName, }: RankTierCardProps): import("react/jsx-runtime").JSX.Element; export { RankTierCard }; export type { RankTierCardProps }; //# sourceMappingURL=rank-tier-card.d.ts.map