import type * as Vital from "../../api/index.js"; import * as core from "../../core/index.js"; import type * as serializers from "../index.js"; import { Energy } from "./Energy.js"; import { Macros } from "./Macros.js"; import { Micros } from "./Micros.js"; export declare const ClientFacingFood: core.serialization.ObjectSchema; export declare namespace ClientFacingFood { interface Raw { energy?: Energy.Raw | null; macros?: Macros.Raw | null; micros?: Micros.Raw | null; } }