import { PriceToken, PriceTokenAmount } from "../../../../../common/tokens"; import { BlockchainName, EvmBlockchainName } from "../../../../../core/blockchain/models/blockchain-name"; import { RouterQuoteResponseConfig } from "../../../../common/providers/router/models/router-quote-response-config"; import { RequiredCrossChainOptions } from '../../models/cross-chain-options'; 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'; export declare class RouterCrossChainProvider extends CrossChainProvider { readonly type: "router"; isSupportedBlockchain(fromBlockchain: BlockchainName): boolean; calculate(from: PriceTokenAmount, toToken: PriceToken, options: RequiredCrossChainOptions): Promise; protected getRoutePath(fromToken: PriceTokenAmount, toToken: PriceTokenAmount, routerQuoteConfig: RouterQuoteResponseConfig): Promise; getFeeInfo(fromBlockchain: EvmBlockchainName, providerAddress: string, percentFeeToken: PriceTokenAmount, useProxy: boolean): Promise; }