import React from "react"; import { type VariantProps } from "../../utils.js"; declare const toastRootVariants: (props?: ({ variant?: "default" | "subtle" | null | undefined; hasDescription?: boolean | null | undefined; } & import("class-variance-authority/types").ClassProp) | undefined) => string; type ToastRootProps = React.HTMLAttributes & VariantProps; declare const ToastRoot: ({ className, hasDescription, variant, children, ...props }: ToastRootProps) => React.JSX.Element; export { ToastRoot, type ToastRootProps, toastRootVariants };