import { ScoreIndicatorSubject } from '../../components/ScoreIndicator'; export type GradeCardTrend = 'up' | 'down'; export interface GradeCardProps { /** Grade or score value shown inside the indicator, e.g. "1.7". */ grade: string; /** Subject display name, e.g. "German". */ subject: string; /** Subject group driving the indicator colour. Defaults to "OT" (other/neutral). */ subjectCode?: ScoreIndicatorSubject; /** Direction of the grade change — drives the helper text colour. */ trend: GradeCardTrend; /** Helper text describing the change, e.g. "+1 grade change". */ trendText: string; label?: string; className?: string; } export declare function GradeCard({ grade, subject, subjectCode, trend, trendText, label, className, }: GradeCardProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=GradeCard.d.ts.map