import * as React from "react"; import { type VariantProps } from "class-variance-authority"; declare const toastVariants: (props?: ({ variant?: "default" | "destructive" | null | undefined; } & import("class-variance-authority/types").ClassProp) | undefined) => string; declare function Toast({ className, variant, ...props }: React.ComponentProps<"div"> & VariantProps): import("react/jsx-runtime").JSX.Element; declare function ToastTitle({ className, ...props }: React.ComponentProps<"div">): import("react/jsx-runtime").JSX.Element; declare function ToastDescription({ className, ...props }: React.ComponentProps<"div">): import("react/jsx-runtime").JSX.Element; export { Toast, ToastTitle, ToastDescription }; //# sourceMappingURL=toast-primitives.d.ts.map