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: Pick<Employee, 'name' | 'position' | 'team'> | null;
};
export declare const mockEmployees: Employee[];
