import { AST } from "@glimmer/syntax"; import { Position } from "estree"; export interface FocusPath { parent: FocusPath | null; data: AST.Node | null; } /** * Returns a linked list where the root node is the item found at the corresponding * position with links back to all of its parent nodes. */ export declare function createFocusPath(node: AST.Node, position: Position, seen?: Set, astPathNode?: FocusPath): FocusPath | null; //# sourceMappingURL=createFocusPath.d.ts.map