import { Vue } from 'nuxt-property-decorator'; import { CurrentGradeRollStat, GradeRollStatUnit, GradeRollStatDept } from './types'; export declare class APIGradeRollsMonitor extends Vue { loadingGradeRollStats: boolean; currentStats: CurrentGradeRollStat[]; academicUnitStats: GradeRollStatUnit[]; departmentStats: GradeRollStatDept[]; loadGradeRollStats: (payload: { yearTerm: string; academicUnit: string; }) => Promise; created(): void; }