export declare const GatewayErrorCode: { readonly InsufficientAmount: "INSUFFICIENT_AMOUNT"; readonly InsufficientSwapAmount: "INSUFFICIENT_SWAP_AMOUNT"; readonly InsufficientSolverBalance: "INSUFFICIENT_SOLVER_BALANCE"; readonly InsufficientFunds: "INSUFFICIENT_FUNDS"; readonly InsufficientPaymentAmount: "INSUFFICIENT_PAYMENT_AMOUNT"; readonly UnableToCoverFees: "UNABLE_TO_COVER_FEES"; readonly InsufficientConfirmedFunds: "INSUFFICIENT_CONFIRMED_FUNDS"; readonly SimulationFailed: "SIMULATION_FAILED"; readonly GasEstimateFailed: "GAS_ESTIMATE_FAILED"; readonly PerAccountLimitExceeded: "PER_ACCOUNT_LIMIT_EXCEEDED"; readonly GlobalLimitExceeded: "GLOBAL_LIMIT_EXCEEDED"; readonly ExceededLimit: "EXCEEDED_LIMIT"; readonly InvalidRequest: "INVALID_REQUEST"; readonly InvalidOrderArgs: "INVALID_ORDER_ARGS"; readonly InvalidAffiliateFee: "INVALID_AFFILIATE_FEE"; readonly SlippageTooLow: "SLIPPAGE_TOO_LOW"; readonly SlippageTooHigh: "SLIPPAGE_TOO_HIGH"; readonly NoRoute: "NO_ROUTE"; readonly DisabledChain: "DISABLED_CHAIN"; readonly InvalidDestinationChainId: "INVALID_DESTINATION_CHAIN_ID"; readonly OrderNotFound: "ORDER_NOT_FOUND"; readonly OrderExpired: "ORDER_EXPIRED"; readonly DuplicateOrder: "DUPLICATE_ORDER"; readonly InternalError: "INTERNAL_ERROR"; }; export type GatewayErrorCode = typeof GatewayErrorCode[keyof typeof GatewayErrorCode]; export declare function instanceOfGatewayErrorCode(value: any): boolean; export declare function GatewayErrorCodeFromJSON(json: any): GatewayErrorCode; export declare function GatewayErrorCodeFromJSONTyped(json: any, ignoreDiscriminator: boolean): GatewayErrorCode; export declare function GatewayErrorCodeToJSON(value?: GatewayErrorCode | null): any; export declare function GatewayErrorCodeToJSONTyped(value: any, ignoreDiscriminator: boolean): GatewayErrorCode;