import type { Meta, StoryObj } from '@storybook/react'; import { ModalTitle } from './ModalTitle'; /** * `ModalTitle` has a LEAP logo prepended for Desktop theme, can set its visibility with `showLeapLogo` props. The logo is omitted in Web theme. * * ```js * import { ModalTitle } from "@galaxy-ds/core"; * ``` */ declare const meta: Meta; export default meta; type Story = StoryObj; export declare const Default: Story;