import type { FoodItem } from "../types.js"; export declare function searchUsdaFoods(query: string, limit?: number): Promise<{ foods: FoodItem[]; provider: "usda"; }>; export declare function getUsdaFood(sourceId: string): Promise;