import { Base } from './base'; import { DeviceInformation } from './deviceInformation'; import { BankInformation } from './bankInformation'; import { WorkInformation } from './workInformation'; export declare class Employee extends Base { uid?: string; imageURL?: string; taxationIdentificationNumber?: string; nationalIdentificationNumber?: string; socialSecurityNumber?: string; retirementSaving?: string; firstName?: string; middleName?: string; firstLastName?: string; secondLastName?: string; maritalStatus?: string; birthDate?: Date; modificationDate?: Date; updatedOn?: Date; deviceInformation?: DeviceInformation; bankInformation?: BankInformation; workInformation?: WorkInformation; constructor(data?: any | null); }