import { Tags } from '../../../types/Tags'; export interface PeopleCardProps { firstName: string; lastName: string; jobTitle?: string; email: string; phoneNumber?: string; tags?: Tags; profileImage?: any; link?: string; alt?: string; noImage?: boolean; } export declare const PeopleCard: ({ firstName, lastName, email, phoneNumber, tags, jobTitle, profileImage, link, alt, noImage, }: PeopleCardProps) => JSX.Element;