import * as React from 'react'; export interface FieldDetailProps { value?: any; label: string; raw?: boolean; } export declare class FieldDetail extends React.PureComponent { render(): JSX.Element | null; }