import { IEmployee, ITag, IUser } from '@metad/contracts'; import { TenantOrganizationBaseEntity } from '../core/entities/internal'; export declare class Employee extends TenantOrganizationBaseEntity implements IEmployee { valueDate?: Date; isActive: boolean; short_description?: string; description?: string; startedWorkOn?: Date; endWork?: Date; payPeriod?: string; billRateValue?: number; billRateCurrency?: string; reWeeklyLimit?: number; offerDate?: Date; acceptDate?: Date; rejectDate?: Date; employeeLevel?: string; anonymousBonus?: boolean; averageIncome?: number; averageBonus?: number; totalWorkHours?: number; averageExpenses?: number; show_anonymous_bonus?: boolean; show_average_bonus?: boolean; show_average_expenses?: boolean; show_average_income?: boolean; show_billrate?: boolean; show_payperiod?: boolean; show_start_work_on?: boolean; isJobSearchActive?: boolean; linkedInUrl?: string; facebookUrl?: string; instagramUrl?: string; twitterUrl?: string; githubUrl?: string; gitlabUrl?: string; upworkUrl?: string; isVerified?: boolean; isVetted?: boolean; totalJobs?: number; jobSuccess?: number; fullName?: string; user: IUser; readonly userId: string; tags: ITag[]; }