import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { AmountDecimal, AmountDecimal$Outbound } from "./amountdecimal.js"; export type BillingCountAndAmount = { /** * The number of items. */ count: number; /** * The total amount. */ amount: AmountDecimal; }; /** @internal */ export declare const BillingCountAndAmount$inboundSchema: z.ZodType; /** @internal */ export type BillingCountAndAmount$Outbound = { count: number; amount: AmountDecimal$Outbound; }; /** @internal */ export declare const BillingCountAndAmount$outboundSchema: z.ZodType; export declare function billingCountAndAmountToJSON(billingCountAndAmount: BillingCountAndAmount): string; export declare function billingCountAndAmountFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=billingcountandamount.d.ts.map