@progressive-development/pd-wizard
Version:
Webcomponent pd-wizard following open-wc recommendations
12 lines • 405 B
TypeScript
import { Meta, StoryObj } from '@storybook/web-components';
import { PdWizardStep } from '../types.js';
type WizardArgs = {
wizardSteps: PdWizardStep[];
currentNumber: number;
};
declare const meta: Meta<WizardArgs>;
export default meta;
type Story = StoryObj<WizardArgs>;
export declare const Wizard: Story;
export declare const WizardPanel: Story;
//# sourceMappingURL=pd-wizard.stories.d.ts.map