export type FoodItem = {
    co2_per_kg: number;
    source: string;
};
export type FoodGroup = {
    [foodName: string]: FoodItem;
};
export type FoodCategory = {
    [groupName: string]: FoodGroup;
};
