import type { Meta, StoryObj } from "@storybook/react"; import { Switch } from "@appsmith/wds"; /** * Switch is a component that allows the user to select one or more options from a set. */ declare const meta: Meta; export default meta; type Story = StoryObj; export declare const Main: Story; export declare const States: Story; /** * The component supports two label positions `start` and `end`. Default size is `start`. */ export declare const LabelPosition: Story;