export type Employee = {
    id: string;
    name: string;
    position: string;
    avatarUrl: string;
    team: string;
    workingAgreement: 'Full-time' | 'Part-time' | 'Freelance' | 'Contractor';
    startWorkingDate: string;
    endWorkingDate: string;
    status: 'active' | 'onboarding' | 'offboarding' | 'inactive' | 'retired';
    manager: {
        name: string;
        position: string;
        team: string;
    } | null;
};
export declare const employees: Employee[];
export declare const employees500: Employee[];
