import { StoryObj } from '@storybook/html';
import { ToastProps } from './Toast';
declare const meta: {
    title: string;
    render: (args: ToastProps) => DocumentFragment;
    argTypes: {
        title: {
            control: string;
        };
        description: {
            control: string;
        };
        action: {
            control: string;
        };
    };
};
export default meta;
type Story = StoryObj<ToastProps>;
export declare const Normal: Story;
