import type { ParseResult } from "../types/index.js"; /** * Parse via tree-sitter when the runtime + grammar are available. * Returns null when anything is missing — callers must fall back to * the regex parser. Async because grammar loading is async; cached so * subsequent calls for the same language are sync after the first hit. */ export declare function tryParseTreeSitter(content: string, language: string): Promise;