import Discourse from '../index'; import { NotificationList, MarkNotificationRead } from '../types/Notifications'; export declare type NotificationParams = { recent?: boolean; limit?: number; offset?: number; username?: string; }; export interface INotifications { get(inputs?: NotificationParams): Promise; markRead(params: { id: number; }): Promise; } export default function Notifications(discourse: Discourse): void;