import { Location } from 'vscode-languageserver/node'; import { CacheFile, CacheUnitPositionType } from '../types/ClientCache'; import { DocNode } from '../types/handlers'; export declare function onNavigation({ node, offset, cacheFile, type }: { cacheFile: CacheFile; offset: number; node: DocNode; type: CacheUnitPositionType; }): Location[] | null;