/** * Node.js adapter for loading tree-sitter grammar WASM files. * * Reads WASM bytes from the filesystem. Grammar resolution order: * 1. `tree-sitter-wasms` package (if installed as optional peer) * 2. `@gitwand/core` local assets directory (packages/core/assets/grammars/) */ /** * Resolve the filesystem path to a grammar WASM file. * * @param grammarName - e.g. "tree-sitter-typescript" */ export declare function resolveGrammarPath(grammarName: string): string; /** * Load grammar WASM bytes from the Node.js filesystem. */ export declare function loadGrammarBytes(grammarName: string): Promise; //# sourceMappingURL=node.d.ts.map