export declare type Employee = { Id: string; Key: string; EmployeeNumber: string; SupervisorKey: string; TerminationDate: Date; HireDate: Date; LastName: string; FirstName: string; PayGroup: { Key: string; Id: string; Name: string; IsActive: boolean; TimeEntryTechnique: string; }; Department: { Id: string; Key: string; Description: string; IsDefault: boolean; ParentKey: string; Type: number; TimeZoneOffset: number; NoPay: boolean; }; Division: { Id: string; Key: string; Description: string; IsDefault: boolean; ParentKey: string; Type: number; PayrollCode: string; }; Location: { Id: string; Key: string; Description: string; IsDefault: boolean; ParentKey: string; Type: number; PayrollCode: string; }; Company: { Id: string; Key: string; Description: string; IsDefault: boolean; ParentKey: string; Type: number; PayrollCode: string; }; EmployeeStatus: { Key: string; Code: string; Description: string; StatusClass: number; }; };