import { AuditInterface } from ".";
export declare type NotificationType = "NEW" | "READED";
export interface NotificationInterface extends AuditInterface {
    headline?: string;
    description?: string;
    link?: string;
    userIdReaded?: string[];
    status?: string;
    type?: string;
    to?: {
        type: "USER" | "TENANT";
        id: string;
    }[];
}
