import { NotificationBase, NotificationCustom } from '../util/types'; import { Model } from './model'; export declare class Notification extends Model { static endpoint: string; read?: string; base?: NotificationBase; custom?: NotificationCustom; times?: number; timestamp?: string; identifier?: string; constructor(); getIds(): string[]; }