import React from 'react';
type ToastType = {
text: string;
color: 'success' | 'error';
timeWait?: number;
pauseOnHover?: boolean;
onClose: () => void;
};
declare const ToastComponent: (props: ToastType) => React.JSX.Element;
export default ToastComponent;