export interface Employee {
    id: number;
    firstName: string;
    lastName: string;
    startDate: string;
    departments: string;
    dateOfBirth: string;
    street: string;
    city: string;
    stateCountry: string;
    zipCode: string;
}
export declare const employeesData: Employee[];
export default employeesData;
