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