import { XastNode } from "./types"; import { VisitInfo } from "./visit"; /** * Replaces the current node with `replacement`. It is assumed that the current * node is in an array that is a child of a parent element. If this is not the case, * the function will error. */ export declare function replaceNodeDuringVisit(replacement: XastNode | XastNode[], info: VisitInfo): void; //# sourceMappingURL=replace-node-during-visit.d.ts.map