export interface CheckboxOption { id: string; label: string; } export interface CheckboxWithLabelProps { label?: string; options: CheckboxOption[]; selectedValues: string[]; onValueChange: (selectedValues: string[]) => void; singleSelect?: boolean; }