import type { StoryObj } from '@storybook/react'; import * as React from 'react'; declare function Toaster(): React.ReactPortal; declare const meta: { title: string; component: typeof Toaster; render: (args: import("@storybook/react").Args) => React.JSX.Element; }; export default meta; type Story = StoryObj; export declare const Default: Story;