export interface Props {
title?: string;
text?: string;
color?: string;
duration?: number;
position?: 'top-left' | 'top-right' | 'bottom-left' | 'bottom-right';
type?: 'info' | 'warning' | 'danger' | 'success';
showProgress?: boolean;
showClose?: boolean;
}