import { FC, ReactNode } from "react"; import { NotificationContext } from "./context"; /** Provides the notification queue to descendant components */ declare const NotificationProvider: FC<{ children: ReactNode; }>; export { NotificationProvider }; export { NotificationContext }; //# sourceMappingURL=provider.d.ts.map