import * as React from 'react'; export interface InfoFieldType { key: string; value: string; } interface InfoProps { header?: string; inline?: boolean; infoFields: InfoFieldType[]; style?: React.CSSProperties; } declare const _default: React.ComponentType; export default _default;