import type { Meta, StoryObj } from "@storybook/react"; import { Modal } from "@appsmith/wds"; /** * A modal is a floating element that displays information that requires immediate attention, appearing over the page content and blocking interactions with the page until it is dismissed. * * Modal developed on basis of Popover headless component. Additional information about functionality of Modal component can be found in the [Popover story](/docs/design-system-headless-popover--docs). */ declare const meta: Meta; export default meta; type Story = StoryObj; export declare const Main: Story; export declare const ModalExample: Story; export declare const CustomModal: Story;