import React from 'react'; import { IToastProps } from './Toast.types'; /** * Toast displays a short, important message in a way that attracts the user's attention without interrupting the user's task. */ declare const Toast: React.FC; export default Toast;