import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { MeterQuantity } from "./meterquantity.js"; export type MeterQuantities = { quantities: Array; /** * The total quantity for the period. */ total: number; }; /** @internal */ export declare const MeterQuantities$inboundSchema: z.ZodMiniType; export declare function meterQuantitiesFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=meterquantities.d.ts.map