import { BaseEntity } from "../../common/entities/base.entity";
import { Employee } from "./employee.entity";
export declare class EmployeeInformation extends BaseEntity {
    id: number;
    employee_id: number;
    address: string;
    city: string;
    state: string;
    gender: string;
    alternate_mobile_number: string;
    personal_email: string;
    date_of_birth: Date;
    marital_status: string;
    blood_group: string;
    parents_name: string;
    parents_contact_number: string;
    emergency_contact_name: string;
    emergency_contact_relationship: string;
    emergency_contact_number: string;
    permanent_address: string;
    pincode: string;
    native_place: string;
    total_work_experience_years: number;
    previous_company_name: string;
    previous_designation: string;
    last_salary: number;
    education_qualification: string;
    bank_name: string;
    account_number: string;
    ifsc_code: string;
    account_holder_name: string;
    aadhar_card: string;
    pan_card_number: string;
    uan: string;
    resume_url: string;
    offer_letter: string;
    appointment_letter: string;
    id_proof: string;
    address_proof: string;
    education_certificates: string;
    employee: Employee;
    setDocumentUrls(): void;
}
