import * as z from "zod"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; /** * Base fees */ export type OrderFees = { fees: { [k: string]: number; }; }; /** @internal */ export declare const OrderFees$inboundSchema: z.ZodType; /** @internal */ export type OrderFees$Outbound = { fees: { [k: string]: number; }; }; /** @internal */ export declare const OrderFees$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace OrderFees$ { /** @deprecated use `OrderFees$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `OrderFees$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `OrderFees$Outbound` instead. */ type Outbound = OrderFees$Outbound; } export declare function orderFeesToJSON(orderFees: OrderFees): string; export declare function orderFeesFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=orderfees.d.ts.map