import { UsfmEditorRef } from "./UsfmEditor";
export declare class NoopUsfmEditor implements UsfmEditorRef {
    getMarksAtSelection: () => string[];
    addMarkAtSelection: () => void;
    removeMarkAtSelection: () => void;
    getParagraphTypesAtSelection: () => string[];
    setParagraphTypeAtSelection: () => void;
    goToVerse: () => void;
}
