import { BlockNodeMap, ContentBlockNode } from '../../types'; /** * If target block has children, sourceBlock should be placed after all * of its children. */ declare function insertBlockAfter(blockMap: BlockNodeMap, targetBlock: ContentBlockNode | undefined, sourceBlock: ContentBlockNode | undefined): BlockNodeMap; export default insertBlockAfter;