import * as React from 'react'; import { ToastType } from './ToastTypes'; interface ToastProps { message: string; type: ToastType; } export declare const Toast: React.FC; export {};