import { DataInterface } from "./data.interface";
export interface RubricInterface {
    id: string;
    contextId: number;
    contextType: string;
    data: DataInterface[];
    pointsPossible: number;
    title: string;
    reusable: boolean;
    public: boolean;
    readOnly: boolean;
    freeFormCriterionComments: boolean;
    hideScoreTotal: boolean;
    ratingOrder: string;
    rubricNumber: number;
}
//# sourceMappingURL=rubric.interface.d.ts.map