import React from "react";
import { NotificationProps } from "./Notification";
export type ToastProps = NotificationProps;
/**
 * Displays a `Notification` with a pre-set `timeout` setting.
 */
declare function Toast({ children, className, timeout, ...otherProps }: NotificationProps): React.JSX.Element;
export default Toast;
