import * as React from "react";
import type { ToastProps } from "./toastProps";
/**
 * Toast component.
 *
 * @see https://blueprintjs.com/docs/#core/components/toast
 */
export declare const Toast: React.ForwardRefExoticComponent<ToastProps & React.RefAttributes<HTMLDivElement>>;
/** @deprecated Use `Toast` instead */
export declare const Toast2: React.ForwardRefExoticComponent<ToastProps & React.RefAttributes<HTMLDivElement>>;
export type Toast2 = typeof Toast;
