import React from 'react'; export interface ValueListProps { items: InfoItem[]; } export interface InfoItem { heading: string; value: any; } export declare const ValueList: React.FC;