import type { StoryObj } from '@storybook/web-components-vite'; import type { USARadioElement } from './radio.element.js'; declare const meta: { title: string; tags: string[]; render(args: USARadioElement & { description: string; }): import("lit-html").TemplateResult<1>; argTypes: {}; args: { tiled: true; }; }; export default meta; type Story = StoryObj; export declare const Primary: Story;