import { Report } from "./report";
export interface GroupReport {
    entityId: string;
    reports: Report[];
}
