import { AstNode } from '../types'; /** * Default `getChildren` implementation for nodes in the AST that have no children. */ export declare const noChildren: () => never[]; /** * Assign the provided node as the parent of all child nodes. */ export declare const assignParent: (node: AstNode) => void;