/**
 * These node types are types that can appear in the "type" field of a slate node
 * but are NOT usfm markers.
 */
declare const NodeTypes: {
    CHAPTER: string;
    VERSE: string;
    HEADERS: string;
    INLINE_CONTAINER: string;
};
export default NodeTypes;
