import type { StoryObj } from "@storybook/react"; import React from "react"; import { Banner } from "./Banner"; declare const _default: { title: string; component: typeof Banner; argTypes: { link: { control: { type: string; }; description: string; table: { type: { summary: string; }; }; }; isClosable: { control: { type: string; }; description: string; table: { type: { summary: string; }; defaultValue: { summary: boolean; }; }; }; kind: { control: { type: string; options: string[]; }; description: string; table: { type: { summary: string; }; defaultValue: { summary: string; }; }; }; children: { control: { type: string; }; description: string; table: { type: { summary: string; }; }; }; onClose: { control: { type: string; }; description: string; table: { type: { summary: string; }; }; }; className: { control: { type: string; }; description: string; table: { type: { summary: string; }; }; }; }; decorators: ((Story: () => React.ReactNode) => JSX.Element)[]; }; export default _default; type Story = StoryObj; export declare const BannerStory: Story;