import { BaseEntity } from "../../common/entities/base.entity";
import { Company } from "../../company/entities/company.entity";
import { Employee } from "../../employees/entities/employee.entity";
export declare class Notification extends BaseEntity {
    id: number;
    title: string;
    description: string;
    type: string;
    is_read: number;
    company_id: number;
    employee_id: number;
    company: Company;
    employee: Employee;
}
