import { Root, Element, Content } from 'hast'; /** * Wrap into a node list. * * Allowed values: * - string: wrap it in a text node * - node: wrap it in an array as [node] * - root: extract the children * - array: keep it as-is (assuming it's an array of nodes) */ export declare function toNodeArray(input: string | Element | Root | Element[]): Content[]; //# sourceMappingURL=to-node-array.d.ts.map