import { FieldProps } from "../../index";
import { FireCMSEditorProps } from "../../editor";
interface MarkdownEditorFieldProps {
    highlight?: {
        from: number;
        to: number;
    };
    editorProps?: Partial<FireCMSEditorProps>;
}
export declare function MarkdownEditorFieldBinding({ property, propertyKey, value, setValue, includeDescription, showError, error, minimalistView, disabled: disabledProp, isSubmitting, context, customProps, }: FieldProps<string, MarkdownEditorFieldProps>): import("react/jsx-runtime").JSX.Element;
export {};
