import { Node } from './node'; /** * Implements a visitor pattern to walk all the nodes in a node tree depth first. */ export declare function walk(node: Node): IterableIterator;