import { Parser } from 'web-tree-sitter'; /** * Lazily initializes and returns a singleton tree-sitter Parser * configured for Python. */ export declare function getParser(): Promise; export declare function disposeParser(): Promise; export type { Parser }; export { type Tree, type Node as SyntaxNode } from 'web-tree-sitter';