import React from "react";
import { Toast as ToastType } from "../types";
interface ToastProps {
    toast: ToastType;
    onRemove: (id: string) => void;
}
export declare const Toast: React.FC<ToastProps>;
export {};
