import { Meta, StoryObj } from '@storybook/web-components';
import { ModusSize } from '../types';
interface ChipArgs {
    active?: boolean;
    'custom-class'?: string;
    disabled?: boolean;
    'has-error'?: boolean;
    label: string;
    multiline?: boolean;
    shape?: 'rectangle' | 'circle';
    'show-remove'?: boolean;
    size: ModusSize;
    variant: 'filled' | 'outline';
}
declare const meta: Meta<ChipArgs>;
export default meta;
type Story = StoryObj<ChipArgs>;
export declare const Default: Story;
export declare const AvatarChip: Story;
export declare const CheckIconChip: Story;
export declare const Multiline: Story;
export declare const Composable: Story;
export declare const ShadowDomParent: Story;
export declare const Migration: Story;
