/** * The grader-name rule, shared by the validator that enforces it and the * pipeline that stamps the result field. * * A grader `name` doubles as a stable programmatic key (JUnit property keys, * the analytics store, dashboards), so it is constrained to a slug rather than * free display text. No `.`: the JUnit namespace is dotted * (`grader..`), so a dot would make a key non-parseable by prefix. */ export declare const GRADER_NAME_RE: RegExp; /** * Matches MAX_NAME_LENGTH in graders/default-name.ts: both bound a value that * reaches XML attributes, markdown cells and the `grader_name` column. */ export declare const MAX_GRADER_NAME_LENGTH = 60; export declare function isValidGraderName(name: string): boolean; //# sourceMappingURL=grader-name.d.ts.map