import { FC } from 'react'; import '../index.less'; interface FieldContentProps { fieldMap: Record; value?: string; onChange: (val?: string) => void; searchValue: string; } declare const FieldContent: FC; export default FieldContent;