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;
    gender: string;
    alternate_mobile_number: string;
    date_of_birth: Date;
    marital_status: string;
    parents_name: string;
    parents_contact_number: string;
    blood_group: string;
    native_place: string;
    resume_url: string;
    aadhar_card: string;
    pan_card_number: string;
    education_qualification: string;
    total_work_experience_years: number;
    employee: Employee;
    setResumeUrl(): Promise<void>;
}
