export declare class Employee { id: number; firstName: string; lastName: string; employeeType: string; constructor(id: number, firstName: string, lastName: string, employeeType?: string); }