@modul/mbui 0.0.36-beta-pv-53652-4260052c → 0.0.36-beta-pv-53653-5419f44f

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,5 +1,5 @@
1
1
  import React, { ReactNode } from 'react';
2
- import { ToasterProps, ExternalToast } from 'sonner';
2
+ import { ToasterProps, ExternalToast, useSonner } from 'sonner';
3
3
  declare const Toaster: {
4
4
  ({ ...props }: ToasterProps): React.JSX.Element;
5
5
  displayName: string;
@@ -10,4 +10,4 @@ interface IToast {
10
10
  snackbar: (title?: string | ReactNode, options?: ExternalToast) => React.ReactNode;
11
11
  }
12
12
  declare const toast: IToast;
13
- export { Toaster, toast };
13
+ export { Toaster, toast, useSonner };