import type { Meta, StoryObj } from '@storybook/react-vite'; import { Badge } from './badge'; /** * `Badge` is a small inline label used for statuses, tags, and callouts * ("New", "Beta", counts). It supports several color variants and can render * `asChild` (e.g. as a link). */ declare const meta: Meta; export default meta; type Story = StoryObj; export declare const Default: Story; export declare const Secondary: Story; export declare const Destructive: Story; export declare const Outline: Story; export declare const New: Story; export declare const Beta: Story; export declare const Highlight: Story; /** Badge with a leading icon. */ export declare const WithIcon: Story; /** All variants together. */ export declare const AllVariants: Story;