import type { StoryObj } from '@storybook/web-components-vite'; import type { USAStepIndicatorElement } from './step-indicator.element.js'; declare const meta: { title: string; tags: string[]; render(args: USAStepIndicatorElement & { counter: string; }): import("lit-html").TemplateResult<1>; argTypes: { counter: { control: "select"; options: (string | null)[]; }; }; args: { counter: string; }; }; export default meta; type Story = StoryObj; export declare const Primary: Story;