import { Location } from 'vscode-languageserver'; import type { Position as LspPosition } from 'vscode-languageserver'; import type { Token } from '@angriff36/manifest/types'; import type { SymbolEntry } from '../symbols/symbol-index.js'; /** * Find the definition location for the token at the given position. */ export declare function getDefinition(tokens: Token[], symbols: SymbolEntry[], uri: string, position: LspPosition): Location | null; //# sourceMappingURL=definition.d.ts.map