export interface NotificationCommonProps {
    containerId?: string | number;
    duration?: number;
    fix?: 'top' | 'bottom' | 'right' | 'left';
    closeOnClick?: boolean;
}
export type NotificationId = string;
