import type { Meta, StoryObj } from '@storybook/react'; import { ModalContent } from './ModalContent'; /** * ```js * import { ModalContent } from "@galaxy-ds/core"; * ``` */ declare const meta: Meta; export default meta; type Story = StoryObj; /** * `ModalContent` can disable/enable top & bottom dividers and paddings with props `dividers` and `disablePaddings`. Desktop theme ModalContent only has bottom divider. */ export declare const Default: Story; /** * By default `ModalContent` has paddings. To remove paddings set `disablePaddings` to `true`. */ export declare const ContentPaddings: Story;