import { FC, ReactNode } from "react"; interface NotificationContextProps { showNotification: (content: ReactNode) => void; closeNotification: () => void; } export declare const useNotification: () => NotificationContextProps; export declare const NotificationProvider: FC<{ children: ReactNode; }>; export {};