export declare const SOURCE_DEBUG_ID_VARIABLE = "_btDebugIds"; export declare const SOURCE_DEBUG_ID_COMMENT = "debugId"; export declare const SOURCEMAP_DEBUG_ID_KEY = "debugId"; export declare class DebugIdGenerator { generateSourceSnippet(uuid: string): string; generateSourceComment(uuid: string): string; getSourceDebugId(source: string): string | undefined; addSourceMapDebugId(sourceMap: T, uuid: string): T & { [SOURCEMAP_DEBUG_ID_KEY]: string; }; getSourceMapDebugId(sourcemap: object): string | undefined; }