import { BaseEntity } from "../../common/entities/base.entity";
import { Employee } from "./employee.entity";
import { Company } from "../../company/entities/company.entity";
import { Auth } from "src/modules/auth/entities/auth.entity";
export declare class EmployeeSalaryHistory extends BaseEntity {
    id: number;
    employee_id: number;
    company_id: number;
    from_date: Date;
    to_date: Date;
    gross_salary: number;
    basic_salary: number;
    total_earnings: number;
    total_deductions: number;
    net_payable_salary: number;
    basic_salary_percentage: string;
    tds_amount: number;
    regime_type: string;
    notes: string;
    employee: Employee;
    company: Company;
    user: Auth;
}
