export interface OutcomeRollupInterface {
    scores: ScoreInterface[];
    links: {
        user: string;
        section: string;
        status: string;
    };
}
export interface ScoreInterface {
    score: number;
    title: string;
    submittedAt: string;
    count: number;
    hidePoints: boolean;
    links: {
        outcome: string;
    };
}
//# sourceMappingURL=outcome-rollup.interface.d.ts.map