import type { ReactNode } from 'react'; export interface ToastData { id: string; title?: string; description?: string; type?: 'success' | 'error' | 'warning' | 'info' | 'loading' | 'default'; actions?: ReactNode; icon?: ReactNode; variant?: 'extended' | 'simple'; closable?: boolean; duration?: number; [key: string]: unknown; } export interface ToastProps { toast: ToastData; } export declare const Toast: { ({ toast }: ToastProps): import("react/jsx-runtime").JSX.Element; displayName: string; };