import * as React from 'react'; export interface ToastProps { position?: 'top' | 'top-left' | 'top-right' | 'bottom' | 'bottom-left' | 'bottom-right'; id: string; variant: 'info' | 'success' | 'danger' | 'warning' | 'loading'; content: React.ReactNode; onClose?: () => void; setToast?: (value: null) => void; } export declare const Toast: React.FC; export default Toast;