import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type CostMetadataOutput = { /** * The amount in cents. */ amount: string; /** * The currency. Currently, only `usd` is supported. */ currency: string; }; /** @internal */ export declare const CostMetadataOutput$inboundSchema: z.ZodMiniType; export declare function costMetadataOutputFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=costmetadataoutput.d.ts.map