export declare const notificationStatus: readonly ["all", "active", "paused"];
export type NotificationStatus = typeof notificationStatus[number];
export interface INotification {
    id: string;
    created: Date;
    updated: Date;
    isActive: boolean;
    stateNames: string[];
    tags: string[];
    blockDocumentId: string;
}
export declare class Notification implements INotification {
    readonly id: string;
    created: Date;
    updated: Date;
    isActive: boolean;
    stateNames: string[];
    tags: string[];
    blockDocumentId: string;
    constructor(notification: INotification);
}
