import { ListNodeV2 } from"./list-node-v2";
exportdeclarenamespaceListConversionUtil {
/**
* Given a list node, collects the node
* and all of its direct and indirect children.
*
* @param node the node to start with.
*/constcollectNodes: (node: ListNodeV2) =>ListNodeV2[];
}