import type { Meta, StoryObj } from '@storybook/react'; import { ProgressBar } from './ProgressBar'; /** * ```js * import { ProgressBar } from "@galaxy-ds/core"; * ``` */ declare const meta: Meta; export default meta; type Story = StoryObj; /** * If you need to amend the progress of the bar, use the `value` prop and update the number. `0` will set the progress bar state to empty. `100` will set the progress bar to complete. */ export declare const Default: Story; /** * To update the progress bar color, use the `color` prop with value `primary`, `success`, `error`. */ export declare const Colours: Story;