import type { Meta, StoryObj } from '@storybook/react'; import { StepNavigation } from './StepNavigation'; /** * * Set the active step (zero based index). Set to -1 to disable all the steps. * * ```js * import { StepNavigation } from "@galaxy-ds/core"; * ``` */ declare const meta: Meta; export default meta; type Story = StoryObj; export declare const Default: Story;