import type { Meta, StoryObj } from "@storybook/react"; import { Button } from "@appsmith/wds"; /** * A button is a clickable element that is used to trigger an action. */ declare const meta: Meta; export default meta; type Story = StoryObj; export declare const Main: Story; /** * There are 3 variants of the button component. */ export declare const Variants: Story; /** * `Button` component has 3 visual style variants and 5 semantic color options */ export declare const Semantic: Story; /** * The component supports two sizes `small` and `medium`. Default size is `medium`. */ export declare const Sizes: Story; export declare const Disabled: Story; export declare const Loading: Story; export declare const Icon: Story; export declare const IconPosition: Story;