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