import { StoryObj } from '@storybook/react'; import { default as ScrollableBar } from '../ScrollableBar'; declare const meta: { component: typeof ScrollableBar; title: string; parameters: { docs: { description: { component: string; }; }; }; argTypes: {}; }; export default meta; type Story = StoryObj; export declare const Primary: Story;