import { ComponentProps } from 'react'; import * as ToastPrimitives from '@radix-ui/react-toast'; declare const ToastProvider: import('react').FC; export type ToastProps = { className?: string; startTimeout?: boolean; position?: 'top-center' | 'top-right' | 'bottom-center' | 'bottom-right'; open: boolean; onClose: () => void; children: React.ReactNode; animation?: boolean; } & Pick, 'duration'>; export declare const Toast: ({ children, duration, open, position, className, onClose, animation, }: ToastProps) => import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=Toast.d.ts.map