/** * Reviewer feedback surfaces (768w.16.10.4) — presentational, bring-your-own-data * controls for recording a human reviewer's structured judgement of an AI draft: * an overall verdict + per-guardrail scorecard (ReviewScorecard) and section/overall * critique threads (ReviewNotes). Controlled (value + onChange / callbacks); they * never fetch or persist. The captured feedback drives a downstream AI revise loop. * Light (React + lucide only), so they ride the main components barrel like the * health / validation blocks — no dedicated subpath. */ export { ReviewScorecard, DEFAULT_REVIEW_DIMENSIONS } from './ReviewScorecard'; export type { ReviewScorecardProps, ReviewScore, ReviewDimension } from './ReviewScorecard'; export { ReviewNotes } from './ReviewNotes'; export type { ReviewNotesProps, ReviewNote } from './ReviewNotes';