import * as z from "zod/v3"; import { ClosedEnum } from "../../types/enums.js"; /** * Specifies the pricing model used for the calculation of the final fee. */ export declare const FeeModel: { readonly Fixed: "fixed"; readonly Blended: "blended"; readonly Variable: "variable"; }; /** * Specifies the pricing model used for the calculation of the final fee. */ export type FeeModel = ClosedEnum; /** @internal */ export declare const FeeModel$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const FeeModel$outboundSchema: z.ZodNativeEnum; //# sourceMappingURL=feemodel.d.ts.map