UNPKG

fui-fancyui

Version:
50 lines (49 loc) 1.2 kB
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<typeof meta>; export declare const Primary: Story;