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