import React from "react"; import type { StoryObj } from "@storybook/react"; /** * Toaster component for displaying temporary notifications with animations and close button. * * Features: * - Position-aware animations (left-to-right, right-to-left, top-to-bottom) * - Close button on top right corner * - Smooth enter/exit animations * - Multiple toast types (success, error, warning, info) * - Customizable timeout and position */ declare const meta: { title: string; component: React.ForwardRefExoticComponent>; parameters: { layout: string; docs: { description: { component: string; }; }; }; tags: string[]; argTypes: { position: { control: "select"; options: string[]; description: string; table: { defaultValue: { summary: string; }; }; }; }; }; export default meta; type Story = StoryObj; export declare const Default: Story; export declare const RightSideAnimation: Story; export declare const LeftSideAnimation: Story; export declare const CenterAnimation: Story; export declare const AllPositions: Story; export declare const CloseButton: Story; export declare const CustomTimeout: Story; export declare const MultipleToasts: Story; export declare const AllToastTypes: Story; //# sourceMappingURL=Toaster.stories.d.ts.map