enum ToastAnimation { SCALE = 'scale', MOVE = 'move', } enum ToastMargin { NONE = 'none', SMALL = 'small', MEDIUM = 'medium', LARGE = 'large', } enum ToastPosition { TOP_RIGHT = 'topRight', TOP_LEFT = 'topLeft', BOTTOM_RIGHT = 'bottomRight', BOTTOM_LEFT = 'bottomLeft', } enum ToastMode { INFO = 'info', SUCCESS = 'success', WARNING = 'warning', ERROR = 'error' } export {ToastAnimation,ToastMargin,ToastMode,ToastPosition,}