import { BaseEntity } from "../../common/entities/base.entity";
import { Company } from "../../company/entities/company.entity";
import { Department } from "../../departments/entities/department.entity";
import { Role } from "../../role/entities/role.entity";
import { EmployeeInformation } from "./employee-information.entity";
export declare class Employee extends BaseEntity {
    id: number;
    company_id: number;
    department_id: number;
    role_id: number;
    team_lead_id: number;
    first_name: string;
    last_name: string;
    email: string;
    contact_no: string;
    joining_date: Date;
    last_login_at: Date;
    gross_salary: number;
    basic_salary: number;
    net_payable_salary: number;
    tds_amount: number;
    regime_type: string;
    employee_type: string;
    stipend: number;
    status: number;
    company: Company;
    department: Department;
    role: Role;
    teamLead: Employee;
    employeeInformation: EmployeeInformation;
}
