import type { StoryObj } from '@storybook/web-components-vite'; import { type USATagElement } from './tag.element.js'; declare const meta: { title: string; tags: string[]; render(args: USATagElement): import("lit-html").TemplateResult<1>; argTypes: { variant: { control: "select"; options: readonly ["default", "big"]; }; }; args: { variant: "default"; }; }; export default meta; type Story = StoryObj; export declare const Primary: Story;