import { type DocumentSymbol, type Location } from "vscode-languageserver"; import type { SymbolRetriever } from "./symbols"; export type FileRelationships = { imports: string[]; exports: string[]; }; export declare class FileParser { private readonly workspace; private readonly symbolRetriever; constructor(workspace: string, symbolRetriever: SymbolRetriever); extractFileRelationships(fileUri: string): Promise; } export declare const isMethod: (symbol: DocumentSymbol) => boolean; export declare function filterSystemLibraries(definitions: Location[]): Location[];