import { IGrade, IMastery } from '.';
export interface IGradeMastery {
    grade: IGrade;
    mastery: IMastery;
}
