import React from 'react'; interface FieldValueProps { value: any; label: string | React.JSX.Element; isFile?: boolean; property?: string; onChange?: (property: string, value: any) => void; editing?: boolean; } declare const FieldValue: ({ value, label, isFile, property, onChange, editing }: FieldValueProps) => React.JSX.Element; export default FieldValue; //# sourceMappingURL=FieldValue.d.ts.map