import React from 'react';
import { ToastProps } from './Toast.types';
/**
 * Toasts show non-interruptive information to the user
 */
declare const Toast: React.FC<ToastProps>;
export default Toast;
