export interface Snackbar { id: string; msg: string; timeout?: number; color?: string; background?: string; customClass?: any; hideClose?: boolean; action?: { text: string; onClick?: Function; color?: string; }; onAdd?: Function; onRemove?: Function; timeoutObj?: any; }