declare global { interface Window { _smxInfo: any; } } /** * From the already parsed FuncFileLine data from StackLineParser, * find the referenced source map data and decode it to find the corresponding * source file and line values. Update the FFL object in place. * Resulting FFL will also contain the source file path. * * @param ffl FuncFileLine object that is modified with source map information and returned * @return Modified FFL is also returned */ export declare function getSourceMap(ffl: any): any;