import { Level } from "../types"; /** * replacedLevels : The level completely have been changed (the Stage is not tghe same anymore) * modifiedLevelsSelection : The selection of the level have been changed but the Stage is still the same. */ export declare class Report { readonly modifiedLevels: Set; readonly addedLevels: Set; readonly removedLevels: Set; constructor(modifiedLevels: Set, addedLevels: Set, removedLevels: Set); }