import { Base } from './base'; import { Dictionary } from './dictionary'; import { EmployeeMin } from './employeeMin'; import { CompanyMin } from './companyMin'; export declare class RegionInformation extends Base { regionID?: string; regionName?: string; constructor(data?: any | null); } export declare class CostCenter extends Base { costCenterID?: string; costCenterName?: string; constructor(data?: any | null); } export declare class WorkCenter extends Base { workCenterID?: string; workCenterName?: string; constructor(data?: any | null); } export declare class Department extends Base { departmentID?: string; departmentName?: string; constructor(data?: any | null); } export declare class Income extends Base { payrollID: string; date: Date; amount: number; constructor(data?: any | null); } export declare class Wage extends Base { amount: number; typeID: string; typeName: string; payrollType: string; historical: Dictionary; constructor(data?: any | null); readonly periodWage: number; readonly wageLiq: number; } export declare class Contract extends Base { contractID?: string; description?: string; constructor(data?: any | null); } export declare class WorkInformation extends Base { employeeNumber?: string; seniorityDate?: Date; seniorityYears?: number; jobTitle?: string; shift?: string; laidOff?: boolean; supervisor?: EmployeeMin; supervising?: Dictionary; companyRef?: CompanyMin; wage?: Wage; department?: Department; workCenter?: WorkCenter; costCenter?: CostCenter; contract?: Contract; region?: RegionInformation; constructor(data?: any | null); }