import { BlockNodeMap, ContentBlockNode } from '../../types'; /** * If target block has children, childBlock should be placed after all * of its children. */ declare function appendChild(blockMap: BlockNodeMap, parentBlock: ContentBlockNode, childBlock: ContentBlockNode): import("immutable").OrderedMap; export default appendChild;