/** * A single choice inside a `select`, `radio`, or `checkbox` field. */ export interface FormFieldOption { /** Machine value sent back in the submission payload. */ value: string; /** Human label rendered in the form. */ label: string; }