import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type SourceUsageBreakdown = { /** * The amount of credits consumed through the Platform API. */ api: number; /** * The amount of credits consumed through auto-replenishment. */ autoReplenishment?: number | undefined; /** * The amount of credits consumed through other operations. */ other?: number | undefined; /** * The amount of credits consumed through the Platform UI. */ ui: number; }; /** @internal */ export declare const SourceUsageBreakdown$inboundSchema: z.ZodType; export declare function sourceUsageBreakdownFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=sourceusagebreakdown.d.ts.map