export declare type Person = { id: number; name: string; username: string; avatar: string; unavailable?: boolean; }; export declare const people: Person[]; export declare const peopleNames: string[]; export declare const peopleWithRoles: { name: string; title: string; department: string; email: string; role: string; telephone: string; image: string; }[];