export interface PgzCheckboxProps { value: string | number | undefined; dictCode?: string; useDicColor?: boolean; options?: Array; } export interface DictOption { value: string | number; label: string; color?: string; [key: string]: any; }