import './stepper-step'; import type { TemplateResult } from 'lit'; declare const _default: { title: string; component: string; argTypes: { stepNumber: { control: string; }; completed: { control: string; }; active: { control: string; }; }; parameters: { actions: { handles: string[]; }; }; }; export default _default; interface Story { (args: T): TemplateResult; args?: Partial; argTypes?: Record; } interface ArgTypes { stepNumber: number; completed: boolean; active: boolean; } export declare const Default: Story;