import { StoryObj } from '@storybook/react'; declare const meta: { component: import('react').ForwardRefExoticComponent>; title: string; parameters: { docs: { description: { component: string; }; }; }; argTypes: { values: { description: string; control: { type: "object"; }; }; onChange: { description: string; control: { type: "object"; }; }; placeholder: { description: string; control: { type: "text"; }; }; value: { description: string; control: { type: "text"; }; }; emptySelect: { description: string; control: { type: "boolean"; }; table: { defaultValue: { summary: string; }; }; }; disabled: { description: string; control: { type: "boolean"; }; }; 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;