import * as React from "react";
export type MatchTier = "ruby" | "diamond" | "platinum" | "gold" | "silver" | "bronze";
export interface MatchBadgeProps {
/** Match tier/ranking */
tier: MatchTier;
/** Optional label text (defaults to tier name) */
label?: string;
/** Whether to show an icon/emoji */
showIcon?: boolean;
/** Custom className */
className?: string;
}
/**
* MatchBadge component for displaying candidate match tiers
*
* Used in iCaptur for:
* - Candidate ranking (Ruby, Diamond, Platinum, Gold, Silver, Bronze)
* - Match quality indicators
* - Resume match tiers
*
* @example
* ```tsx
*
*
*
* ```
*/
export declare const MatchBadge: React.ForwardRefExoticComponent>;
//# sourceMappingURL=match-badge.d.ts.map