export interface CheckItem { id: string; name: string; children: CheckItem[]; } export interface RadioItem { name: string; id: string; }