import React, { FunctionComponent } from 'react'; export interface IPeopleCardProps { /** * Person Name */ title: string; /** * Link to the user's profile image on LinkedIn */ profileImageUrl?: string; /** * Subtitle - typically `Position • Company` */ subtitle?: string; /** * On Card Click */ onCardClick?: (event: React.MouseEvent) => void; /** * Class Name */ className?: string; } export declare const PeopleCard: FunctionComponent; export default PeopleCard;