import React from 'react';
type ToastVariant = 'success' | 'error' | 'info';
interface ToastProps {
    id: number;
    title?: string;
    message: string;
    variant?: ToastVariant;
    onClose: (id: number) => void;
}
declare const Toast: React.FC<ToastProps>;
export default Toast;
export type { ToastVariant, ToastProps };
