import { StoryObj } from '@storybook/react-vite'; import { default as ProgressBar } from './ProgressBar'; declare const meta: { title: string; component: import('react').ForwardRefExoticComponent & import('react').RefAttributes>; parameters: { layout: string; }; tags: string[]; argTypes: { size: { options: string[]; control: { type: "select"; }; }; }; args: { onClick: import('storybook/internal/test').Mock<(...args: any[]) => any>; }; }; export default meta; type Story = StoryObj; export declare const Default: Story;