import { VTJumpOptions } from './types';

export declare const locationMap: Map<string, {
    file: string;
    startLine: number;
    endLine: number;
}>;
export declare function generateId(filePath: string, line: number): {
    id: string;
    line: number;
};
export declare function createJumpUrl(file: string, line: string, options?: VTJumpOptions): string;
