import { InlineButtons } from "@appsmith/wds"; import type { Meta, StoryObj } from "@storybook/react"; /** * A `InlineButtons` is a group of buttons that are visually connected together. * More information about `Button` props you can find [here](?path=/docs/design-system-widgets-button--docs). */ declare const meta: Meta; export default meta; type Story = StoryObj; export declare const Main: Story; /** * `InlineButtons` component has 3 visual style variants and 5 semantic color options */ export declare const Semantic: Story; /** * You can also customize the color and variant for each individual button through the item config. */ export declare const IndividualSemantic: Story; /** * The component supports two sizes `small` and `medium`. Default size is `medium`. */ export declare const Sizes: Story; /** * If there is not enough space for horizontal positioning, then the themes will be positioned vertically */ export declare const Responsive: Story; /** * The items can be disabled by passing `disabledKeys` or `isDisabled` in the item configuration. * Also, all items can be disabled by passing `isDisabled` to `InlineButtons` component. */ export declare const Disabled: Story; export declare const WithIcons: Story;