export interface SymIdParts { readonly filePath: string; readonly symbolPath: string; } export declare const SymIdCodec: Readonly<{ encode(filePath: string, symbolPath: string): string; decode(symId: string): SymIdParts | null; filePath(symId: string): string | null; isSymId(symId: string): boolean; isForFile(symId: string, filePath: string): boolean; filePattern(filePath: string): string; symbolNamePattern(symbolName: string): string; }>; //# sourceMappingURL=sym-id-codec.d.ts.map