UNPKG

obss-air-command-component-library

Version:
13 lines (12 loc) 281 B
import React from 'react'; export interface ToastProps { id: string; variant: 'success' | 'error'; title: string; message: string; open: boolean; onClose: () => void; duration?: number; } declare const Toast: React.FC<ToastProps>; export default Toast;