import { Editor, Path } from "slate";
export declare const VerseTransforms: {
    joinWithPreviousVerse: typeof joinWithPreviousVerse;
    unjoinVerses: typeof unjoinVerses;
    removeVerseAndConcatenateContentsWithPrevious: typeof removeVerseAndConcatenateContentsWithPrevious;
    addVerse: typeof addVerse;
};
declare function joinWithPreviousVerse(editor: Editor, path: Path): void;
declare function removeVerseAndConcatenateContentsWithPrevious(editor: Editor, path: Path): void;
declare function unjoinVerses(editor: Editor, path: Path): void;
declare function addVerse(editor: Editor, path: Path): void;
export {};
