import { Meta, StoryObj } from '@storybook/web-components';
import { ModusSize } from '../types';
interface BadgeArgs {
    color: 'primary' | 'secondary' | 'tertiary' | 'high-contrast' | 'success' | 'warning' | 'danger';
    'custom-class'?: string;
    size: ModusSize;
    variant: 'counter' | 'filled' | 'outlined' | 'text';
}
declare const meta: Meta<BadgeArgs>;
export default meta;
type Story = StoryObj<BadgeArgs>;
export declare const Default: Story;
export declare const WithIcon: Story;
export declare const ShadowDomParent: Story;
export declare const Migration: Story;
