import type { Meta, StoryObj } from '@storybook/react'; import Banner from './Banner'; /** The `Banner` component displays a dismissible message inside an HTML container. * * If `TextButtonExternal` is used to display links, it must contain an `href` to be focusable. Otherwise, use `Text` to ensure keyboard navigation does not skip the link. */ declare const meta: Meta; export default meta; type Story = StoryObj; export declare const Neutral: Story; export declare const Warning: Story; export declare const Error: Story; export declare const Success: Story; //# sourceMappingURL=Banner.stories.d.ts.map