import type { Meta, StoryObj } from '@storybook/react'; import { Modal } from './Modal'; /** * ```js * import { Modal } from "@galaxy-ds/core"; * ``` */ declare const meta: Meta; export default meta; type Story = StoryObj; /** Modal contains`ModalTitle` as header, can be used with or without a`ModalContent` as body, and`ModalActions` as footer. */ export declare const Default: Story; /** Use `` to get the bottom divider. */ export declare const ContentDividers: Story; export declare const ContentPaddings: Story;