import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import * as models from "../index.js"; export type GetOrderFeesRequest = { /** * Type of the blockchain network */ blockchain?: models.Blockchain | undefined; }; /** @internal */ export declare const GetOrderFeesRequest$inboundSchema: z.ZodType; /** @internal */ export type GetOrderFeesRequest$Outbound = { blockchain?: string | undefined; }; /** @internal */ export declare const GetOrderFeesRequest$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 GetOrderFeesRequest$ { /** @deprecated use `GetOrderFeesRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetOrderFeesRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetOrderFeesRequest$Outbound` instead. */ type Outbound = GetOrderFeesRequest$Outbound; } export declare function getOrderFeesRequestToJSON(getOrderFeesRequest: GetOrderFeesRequest): string; export declare function getOrderFeesRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getorderfees.d.ts.map