import "@uiw/react-md-editor/markdown-editor.css"; import "@uiw/react-markdown-preview/markdown.css"; import { FC as FunctionComponent } from "react"; interface FieldProps { name: string; onChange: (e: { target: { name: string; value: string; }; }) => void; value: string; intlLabel: { id: string; defaultMessage: string; }; disabled?: boolean; error?: string; description?: { id: string; defaultMessage: string; }; required?: boolean; attribute?: any; labelAction?: React.ReactNode; } declare const CustomField: FunctionComponent; export { CustomField };