import "./Toast.scss";
import type { CSSProperties } from "react";
export declare const Toast: ({ message, onClose, closable, duration, style, }: {
    message: string;
    onClose: () => void;
    closable?: boolean | undefined;
    duration?: number | undefined;
    style?: CSSProperties | undefined;
}) => import("react/jsx-runtime").JSX.Element;
