import { TrackerVariableType } from"src/core/model/TrackerVariableType";
/**
* Contract for data collectors. Each collector gathers a set of variables.
* Mirrors Android DataCollector interface.
*/exportinterfaceDataCollector {
collect(): Map<TrackerVariableType, unknown>;
}