import { FC as FunctionComponent } from "react";
import "@uiw/react-markdown-preview/markdown.css";
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<FieldProps>;
export { CustomField };
