import { ClassValue } from "clsx"; import { HTMLAttributes } from "react"; import { IconType } from "react-icons"; export { ToastProvider, useToasts } from "./Provider"; export type Color = "primary" | "neutral" | "error" | "warning" | "success"; interface Props { /** * Custom classnames to apply to the tooltip */ className: ClassValue; /** * Icon to display in the toast */ icon: IconType; /** * The color of the icon * @default "primary" */ iconColor: Color; } export declare function Toast({ children, className, iconColor, icon: Icon }: HTMLAttributes & Partial): import("react/jsx-runtime").JSX.Element;