import type { Meta, StoryObj } from "@storybook/react"; import { Select } from "@appsmith/wds"; /** * A select displays a collapsible list of options and allows a user to select one of them. */ declare const meta: Meta; export default meta; type Story = StoryObj; export declare const Main: Story; /** * The component supports two sizes `small` and `medium`. Default size is `medium`. */ export declare const Sizes: Story; export declare const Loading: Story; export declare const Disabled: Story; export declare const Validation: Story; export declare const ContextualHelp: Story; export declare const WithIcons: Story;