import React from "react"; export type NotificationType = { title?: string; description?: string; type: "success" | "error" | "info"; }; export declare const Notification: { Area: ({ children }: { children: React.ReactNode; }) => React.JSX.Element; }; export declare const useSendNotification: () => (n: NotificationType) => void; //# sourceMappingURL=Notification.d.ts.map