import type TreeNode from '../../../../utils/dataStructures/tree'; import type { HeaderNodeData } from '../headersTree'; import type { NodeModificationResult } from './index'; /** * Expanding a node is a process where the processing node is expanded to * its original colspan width. * * @param {TreeNode} nodeToProcess A tree node to process. * @returns {object} Returns an object with properties. */ export declare function expandNode(nodeToProcess: TreeNode): NodeModificationResult;