import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "./sdk-validation-error.js"; export type CreditBreakdown = { free?: string | undefined; purchased?: string | undefined; }; /** @internal */ export declare const CreditBreakdown$inboundSchema: z.ZodMiniType; export declare function creditBreakdownFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=credit-breakdown.d.ts.map