import './badge'; import type { BadgeVariant } from './badge-base'; import type { TemplateResult } from 'lit'; declare const _default: { title: string; component: string; argTypes: { color: { control: string; options: string[]; }; pill: { control: string; }; pulse: { control: string; }; content: { control: string; }; }; }; export default _default; interface Story { (args: T): TemplateResult; args?: Partial; argTypes?: Record; } interface ArgTypes { color: BadgeVariant; pill: boolean; pulse: boolean; content: string; } export declare const Default: Story; export declare const PropFilled: Story; export declare const PropFilledWithButton: Story;