import type { ASTNode } from './ASTNode.js';
export type Key = string | number | symbol | null | undefined;
export interface ASTPathElement {
    node: ASTNode;
    parent: ASTNode | undefined;
    key: Key;
    index?: number | undefined;
}
export interface ASTPath extends ASTPathElement {
    prev: ASTPath | undefined;
}
//# sourceMappingURL=ASTPath.d.ts.map