export * as food from "./calculators/food";
export * as energy from "./calculators/energy";
export * as transportation from "./calculators/transportation";
export type { FoodCategory, FoodItem, FoodGroup } from "./types/food";
export type { EnergyCategory, EnergyCO2PerKwh } from "./types/energy";
export type { TransportationCategory, TransportationMode } from "./types/transportation";
export { getFood, getEnergy, getTransportation } from "./utils";
