import { type INotificationResponse } from '../../types/index.js';
import { Notification } from './notification.js';
import { Collection } from '../../internal/base/index.js';
export declare class NotificationCollection extends Collection<INotificationResponse, Notification> {
    fromJson(data: INotificationResponse): Notification;
}
