import React from "react"; import type { StoryObj } from "@storybook/react"; declare const meta: { title: string; component: React.ForwardRefExoticComponent>; parameters: { layout: string; docs: { description: { component: string; }; }; }; tags: string[]; argTypes: { placeholder: { control: "text"; description: string; }; disabled: { control: "boolean"; description: string; }; searchable: { control: "boolean"; description: string; }; searchPlaceholder: { control: "text"; description: string; }; }; }; export default meta; type Story = StoryObj; /** * Default single select dropdown (matches Figma design) */ export declare const Default: Story; /** * Select with long option labels */ export declare const LongLabels: Story; /** * Select with many options (scrollable) */ export declare const ManyOptions: Story; /** * Disabled select */ export declare const Disabled: Story; /** * Select with pre-selected value */ export declare const WithValue: Story; /** * Form field with label and select (iCaptur pattern) */ export declare const InForm: Story; /** * Multiple selects in a row */ export declare const MultipleSelects: Story; /** * Select with search functionality */ export declare const Searchable: Story; /** * Searchable select with many options */ export declare const SearchableManyOptions: Story; //# sourceMappingURL=Select.stories.d.ts.map