import { ClusterGroupInterface } from "../../cluster_groups/ClusterGroupTypes"; import { OrganisationUnitInterface } from "../OrganisationUnitTypes"; interface ClusterGroup extends ClusterGroupInterface { id: string; } export interface AddClusterGroupToOrganisationUnit extends OrganisationUnitInterface { clusterGroup: ClusterGroup; } export {};