import { BaseSeverity } from '../../common/types/severity'; import { AlertProps } from '../alert/Alert'; export interface ToastProps extends Omit { /** Gives the supplied appearance */ feSeverity: BaseSeverity; } /** * The `` component renders a notification on top of other content that presents timely information.

* **Notice!** This component is not ment to be used as is but requires a combination of the `ToastContext` and `useToast` hook. See links below: * * See [InVision DSM](https://skf.invisionapp.com/dsm/ab-skf/4-web-applications/nav/5fa7caf78c01200018354495/folder/6151917114d5a861461dbf03) for design principles.
* See [ToastContext](./?path=/docs/other-contexts-toast-context--overview) for info */ declare const Toast: import("react").ForwardRefExoticComponent>; export default Toast;