import type { Meta, StoryObj } from "@storybook/react"; import { IconButton } from "@appsmith/wds"; /** * Icon Button is a button component that only contains an icon. */ declare const meta: Meta; export default meta; type Story = StoryObj; export declare const Main: Story; /** * Just like Button component, There are 3 variants of the icon button component. */ export declare const Variants: Story; /** * `IconButton` component has 3 visual style variants and 5 semantic color options, similar to `Button` component. */ 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;