/// import "react-toastify/dist/ReactToastify.min.css"; import type { ToastProps } from "./Toast.types"; /** * TODO: * - Look up accessibility features for toasts (spectrum, MDN, what toastify does and does not support) * @constructor */ declare function Toast({ ...rest }: ToastProps): JSX.Element; declare namespace Toast { var displayName: string; var defaultProps: { kind: undefined; }; } declare const toast: { show: (content: string, options?: ToastProps) => import("react-toastify").Id; dismiss: () => void; }; export { Toast, toast };