import React from 'react'; import { StackProps } from '../Stack'; import './Toast.scss'; export type ToastProps = { theme: 'success' | 'warning' | 'error'; onRemove?: () => void; } & Omit; export declare const Toast: React.FC;