import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type CreateFeePlanAgreement = { planID: string; }; /** @internal */ export declare const CreateFeePlanAgreement$inboundSchema: z.ZodType; /** @internal */ export type CreateFeePlanAgreement$Outbound = { planID: string; }; /** @internal */ export declare const CreateFeePlanAgreement$outboundSchema: z.ZodType; export declare function createFeePlanAgreementToJSON(createFeePlanAgreement: CreateFeePlanAgreement): string; export declare function createFeePlanAgreementFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=createfeeplanagreement.d.ts.map