declare const JToaster: import("react").ElementType; type JToastArgs = { title: string; description?: string; } | string; type UseToast = { toastInfo: (message: JToastArgs) => void; toastSuccess: (message: JToastArgs) => void; toastError: (message: JToastArgs) => void; toastWarning: (message: JToastArgs) => void; }; declare function useToast(): UseToast; export { useToast, JToaster };