import React, { FunctionComponent } from 'react'; export interface IPersonalHistoryRecordProps { title: string; subtitle?: string | string[]; link?: string; iconName?: string; imageUrl?: string; screenReaderText?: string; onCardClick?: (event: React.MouseEvent) => void; } export declare const PersonalHistoryRecord: FunctionComponent; export default PersonalHistoryRecord;