import * as react from 'react';

declare const showToast: (message: string, options?: {
    type?: "success" | "error";
}) => void;

declare const ToastRoot: () => react.ReactPortal;

export { ToastRoot, showToast };
