export interface Label {
    id: string;
    name: string;
    color: number | null;
    count: number;
    hexColor: string;
}
