import { NotificationList, UnreadCount } from './types.js'; export declare function fetchNotifications(endpoint: string, page?: number): Promise; export declare function markRead(endpoint: string, id: string): Promise; export declare function markAllRead(endpoint: string): Promise; export declare function dismiss(endpoint: string, id: string): Promise; export declare function clearAll(endpoint: string): Promise;