import * as React from "react"; import { type ToasterProps } from "sonner"; /** * `richColors` defaults ON: it is the switch that makes sonner apply the per-type properties at * all (`[data-rich-colors='true'][data-type='success'] { … }`), so without it the tokens above * are declared and never read. A consumer can still pass `richColors={false}` for a deliberately * monochrome stack. */ declare function Toaster({ style, richColors, ...props }: ToasterProps): React.JSX.Element; export { Toaster };