import type { RestFetcher } from '../../rest.js';
export declare const createNotificationsRouter: (request: RestFetcher) => {
    getAll: () => Promise<import("./types.js").Notification[]>;
    markAllAsRead: () => Promise<void>;
};
