import { Collection } from '../../internal/base/index.js';
import { type INotificationLogResponse } from '../../types/index.js';
import { NotificationLog } from './notification-log.js';
export declare class NotificationLogCollection extends Collection<INotificationLogResponse, NotificationLog> {
    fromJson(data: INotificationLogResponse): NotificationLog;
}
