import { StoryObj } from '@storybook/react'; import { GhanttBarLabel } from '../components/molecules/GhanttBarLabel'; declare const meta: { title: string; component: typeof GhanttBarLabel; tags: string[]; parameters: { layout: string; docs: { description: { component: string; }; }; }; argTypes: { type: { control: "inline-radio"; options: string[]; }; stage: { control: "select"; options: string[]; }; theme: { control: "select"; options: string[]; }; progress: { control: { type: "number"; min: number; max: number; }; }; showPercentage: { control: "boolean"; }; interactive: { control: "boolean"; }; selected: { control: "boolean"; }; }; }; export default meta; type Story = StoryObj; export declare const Playground: Story; export declare const ProgressItem: Story; export declare const TimelineItem: Story; //# sourceMappingURL=GhanttBarLabel.stories.d.ts.map