import React from "react";
import { FieldProps } from "../../index";
import type { 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>): React.JSX.Element;
export {};
