import { type StoryObj, type Meta } from '@storybook/react'; import { Callout } from './Callout'; import { type ComponentProps } from 'react'; declare const meta: Meta>; export default meta; type Story = StoryObj; export declare const Default: Story; export declare const WithTitle: Story; export declare const WithDescription: Story; export declare const WithCloseButton: Story; export declare const WithActionButton: Story; export declare const WithFooterAction: Story; /** You can overwrite the default icon by providing a value to the `icon` prop */ export declare const WithSelectedIcon: Story;