import { StoryObj } from '@storybook/react'; import { default as FancyToastMessage } from '../FancyToastMessage'; declare const meta: { component: typeof FancyToastMessage; title: string; parameters: { docs: { description: { component: string; }; story: { height: string; }; }; }; argTypes: { toastMessages: { description: string; control: { type: "object"; }; table: { type: { summary: string; }; defaultValue: { summary: string; }; }; }; closeToast: { description: string; control: { type: "object"; }; table: { type: { summary: string; }; defaultValue: { summary: string; }; }; }; }; }; export default meta; type Story = StoryObj; export declare const Primary: Story;