import { NotificationType, NotificationUsageType } from './enum-values'; import { AbstractNameEntity } from '../../base'; declare const Notification_base: { new (...args: any[]): { isPublished: boolean; hasId(): boolean; save(options?: import("typeorm").SaveOptions): Promise; remove(options?: import("typeorm").RemoveOptions): Promise; softRemove(options?: import("typeorm").SaveOptions): Promise; recover(options?: import("typeorm").SaveOptions): Promise; reload(): Promise; }; } & typeof AbstractNameEntity; export declare class Notification extends Notification_base { type: NotificationType; usage: NotificationUsageType; } export {};