export interface Description {
    type?: string | null;
    value: string;
    color?: string | null;
    label?: string | null;
}
