import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { AddAddonRef, AddAddonRef$Outbound } from "./add-addon-ref.js"; import { SDKValidationError } from "./sdk-validation-error.js"; export type AddAddonParams = { addons?: Array | undefined; subscriptionId?: string | undefined; }; /** @internal */ export declare const AddAddonParams$inboundSchema: z.ZodMiniType; /** @internal */ export type AddAddonParams$Outbound = { addons?: Array | undefined; subscription_id?: string | undefined; }; /** @internal */ export declare const AddAddonParams$outboundSchema: z.ZodMiniType; export declare function addAddonParamsToJSON(addAddonParams: AddAddonParams): string; export declare function addAddonParamsFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=add-addon-params.d.ts.map