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