import { type Notification } from '../types/Notification'; export type DebouncedNotification = Notification & { outOfDate: boolean; updateNotBefore: number; }; export type DebouncedNotifications = { [id: string]: DebouncedNotification; }; declare function getEarliestUpdateNotBefore(notificationMap: DebouncedNotifications): number; declare function useDebouncedNotifications(): [DebouncedNotifications]; export default useDebouncedNotifications; export { getEarliestUpdateNotBefore }; //# sourceMappingURL=useDebouncedNotifications.d.ts.map