import { Meta, StoryObj } from '@storybook/react-vite'; import { MultiSelect } from './MultiSelect'; type Option = { label: string; value: string; }; type Section = { title: string; options: Option[]; }; type Item = Option | Section; declare const meta: Meta; export default meta; type Story = StoryObj>; export declare const Default: Story; export declare const DropdownMode: Story; export declare const ContentMode: Story; export declare const WithDefaultValue: Story; export declare const Error: Story; export declare const Warning: Story; export declare const Disabled: Story; export declare const DisabledValues: Story; export declare const HideSelectAll: Story; export declare const EmptyOptions: Story; export declare const ContentModeWithSections: Story;