export type CheckboxType = 'checked' | 'not-checked' | 'indeterminate'; export interface Option { title: string; value: CheckboxType; disabled: boolean; } export interface CheckboxEvent { title: string; disabled: boolean; value: CheckboxType; }