import { StoryObj } from '@storybook/react'; declare const meta: { component: import('react').ForwardRefExoticComponent>; title: string; parameters: { docs: { description: { component: string; }; }; }; argTypes: { value: { description: string; type: { name: "string"; }; }; align: { description: string; control: { type: "select"; }; options: string[]; table: { defaultValue: { summary: string; }; }; }; }; tags: string[]; }; export default meta; type Story = StoryObj; export declare const Primary: Story;