import { PriceToken, PriceTokenAmount } from "../../../../../common/tokens"; import { EvmBlockchainName } from "../../../../../core/blockchain/models/blockchain-name"; import { RangoQuotePath } from "../../../../common/providers/rango/models/rango-api-best-route-types"; import { RangoSupportedBlockchain } from "../../../../common/providers/rango/models/rango-supported-blockchains"; import { CrossChainTradeType } from '../../models/cross-chain-trade-type'; import { CrossChainProvider } from '../common/cross-chain-provider'; import { CalculationResult } from '../common/models/calculation-result'; import { FeeInfo } from '../common/models/fee-info'; import { RubicStep } from '../common/models/rubicStep'; import { RangoCrossChainOptions } from './model/rango-cross-chain-api-types'; export declare class RangoCrossChainProvider extends CrossChainProvider { type: CrossChainTradeType; private rangoSupportedBlockchains; isSupportedBlockchain(blockchain: EvmBlockchainName): boolean; calculate(from: PriceTokenAmount, toToken: PriceToken, options: RangoCrossChainOptions): Promise; protected getRoutePath(fromToken: PriceTokenAmount, toToken: PriceTokenAmount, path: RangoQuotePath[] | null): Promise; private getStep; protected getFeeInfo(fromBlockchain: RangoSupportedBlockchain, providerAddress: string, percentFeeToken: PriceTokenAmount, useProxy: boolean): Promise; private getCryptoFee; private getReceiverAddress; }