import { Tooltip } from "@appsmith/wds"; import type { Meta, StoryObj } from "@storybook/react"; /** * A tooltip is a small pop-up that appears when a user places their cursor over an element such as a link or button. Tooltips can be used to provide users with additional information about an element without having to clutter up the UI with additional text. */ declare const meta: Meta; export default meta; type Story = StoryObj; export declare const Main: Story; /** * If the trigger is disabled, the tooltip will still be displayed. */ export declare const Disabled: Story; export declare const Placement: Story;