export declare const GRADE_ORDER: readonly ["S", "A", "B", "C", "D"];
export declare const GRADE_NAMES: Record<string, string>;
export declare const GRADE_COLORS: Record<string, string>;
export declare function scoreToGradeCode(score: number): string;
