import React from "react"; import type { StoryObj } from "@storybook/react"; /** * MatchBadge component for displaying candidate match tier rankings. * * Used in iCaptur for: * - Candidate rankings (Ruby, Diamond, Platinum, Gold, Silver, Bronze) * - Match quality indicators * - Resume match tiers throughout the application */ declare const meta: { title: string; component: React.ForwardRefExoticComponent>; parameters: { layout: string; docs: { description: { component: string; }; }; }; tags: string[]; argTypes: { tier: { control: "select"; options: string[]; description: string; }; showIcon: { control: "boolean"; description: string; table: { defaultValue: { summary: string; }; }; }; }; }; export default meta; type Story = StoryObj & { render?: () => React.JSX.Element; }; /** * Default Ruby tier (highest match) */ export declare const Default: Story; /** * All tier variants */ export declare const AllTiers: Story; /** * With icons */ export declare const WithIcons: Story; /** * With custom labels */ export declare const CustomLabels: Story; /** * In candidate card layout (iCaptur pattern) */ export declare const CandidateCard: Story; /** * In table view (iCaptur pattern) */ export declare const TableView: Story; /** * Tier hierarchy demonstration */ export declare const TierHierarchy: Story; //# sourceMappingURL=MatchBadge.stories.d.ts.map