import { FileJp, Program } from "../../Joinpoints.js";
import AnalyserResult from "./AnalyserResult.js";
import ResultList from "./ResultList.js";
/**
 * Class to format the results from the analyser into a resultList
 */
export default class ResultFormatManager<T extends Program | FileJp> {
    analyserResultList: AnalyserResult[];
    /**
     * Create a new ResultList object with the filename
     *
     * @param $startNode -
     * @returns resultList
     */
    formatResultList($startNode: T): ResultList | undefined;
    setAnalyserResultList(analyserResultList: AnalyserResult[]): void;
}
//# sourceMappingURL=ResultFormatManager.d.ts.map