import { ListNodeV2 } from "./list-node-v2";
/**
 * @category Internal
 */
export declare namespace ListConversionUtil {
    /**
     * Given a list node, collects the node
     * and all of its direct and indirect children.
     *
     * @param node the node to start with.
     */
    const collectNodes: (node: ListNodeV2) => ListNodeV2[];
}
