/** * Hook to show toast notifications via the ToastContext. * * @requires ToastProvider * @example * import { useToast } from "@trackunit/react-core-hooks"; * const { addToast } = useToast(); * * addToast({ * intent: "success", * title: "Asset deleted", * id: "deletion-status", * }); * @see { ToastContextValue } */ export declare const useToast: () => import("@trackunit/react-core-contexts-api").ToastContextValue;