import * as z from "zod/v4-mini"; import { OpenEnum } from "../types/enums.js"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./errors/sdk-validation-error.js"; export declare const Namespace: { readonly Eip155: "eip155"; readonly Solana: "solana"; }; export type Namespace = OpenEnum; export declare const FacilitatorChainScheme: { readonly Exact: "exact"; readonly Upto: "upto"; readonly BatchSettlement: "batch-settlement"; }; export type FacilitatorChainScheme = OpenEnum; export type FacilitatorChain = { network: string; name: string; namespace: Namespace; shortName?: string | undefined; isTestnet: boolean; explorer: string; explorerQuery?: string | undefined; rpcUrl: string; assetAddress: string; schemes: Array; asset: "USDC" | "USDT"; decimals: 6; }; /** @internal */ export declare const Namespace$inboundSchema: z.ZodMiniType; /** @internal */ export declare const FacilitatorChainScheme$inboundSchema: z.ZodMiniType; /** @internal */ export declare const FacilitatorChain$inboundSchema: z.ZodMiniType; export declare function facilitatorChainFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=facilitator-chain.d.ts.map