import { BaseEntity } from "../../common/entities/base.entity";
import { Company } from "../../company/entities/company.entity";
import { Auth } from "../../auth/entities/auth.entity";
import { Employee } from "../../employees/entities/employee.entity";
export declare class FcmToken extends BaseEntity {
    id: number;
    fcm_token: string;
    company_id: number;
    user_id: number;
    employee_id: number;
    company: Company;
    user: Auth;
    employee: Employee;
}
