import { Meta, StoryObj } from '@storybook/react'; import { Badge } from './Badge'; type PagePropsAndCustomArgs = React.ComponentProps & { childType?: string; icon?: string; mode?: string; }; declare const meta: Meta; export default meta; type Story = StoryObj; export declare const BadgeStory: Story;