import * as z from "zod/v4-mini"; /** * The amount in cents. */ export type Amount = number | string; export type CostMetadataInput = { /** * The amount in cents. */ amount: number | string; /** * The currency. Currently, only `usd` is supported. */ currency: string; }; /** @internal */ export type Amount$Outbound = number | string; /** @internal */ export declare const Amount$outboundSchema: z.ZodMiniType; export declare function amountToJSON(amount: Amount): string; /** @internal */ export type CostMetadataInput$Outbound = { amount: number | string; currency: string; }; /** @internal */ export declare const CostMetadataInput$outboundSchema: z.ZodMiniType; export declare function costMetadataInputToJSON(costMetadataInput: CostMetadataInput): string; //# sourceMappingURL=costmetadatainput.d.ts.map