export interface OutcomeGroupInterface {
    id: number;
    title: string;
    vendorGuid: string | null;
    url: string;
    subgroupsUrl: string;
    outcomesUrl: string;
    canEdit: boolean;
    importUrl: string;
    parentOutcomeGroup: {
        id: number;
        title: string;
        vendorGuid: string | null;
        url: string;
        subgroupsUrl: string;
        outcomesUrl: string;
        canEdit: boolean;
    };
    contextNumber: number;
    contextType: string;
    description: string | null;
    outcomeGroupNumber: number;
}
//# sourceMappingURL=outcome-group.interface.d.ts.map