import { PriceToken, PriceTokenAmount } from "../../../../../common/tokens"; import { EvmBlockchainName } from "../../../../../core/blockchain/models/blockchain-name"; 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'; import { EddyBridgeSupportedChain } from './constants/eddy-bridge-supported-chains'; export declare class EddyBridgeProvider extends CrossChainProvider { readonly type: "eddy_bridge"; isSupportedBlockchain(fromBlockchain: EvmBlockchainName): boolean; calculate(from: PriceTokenAmount, toToken: PriceToken, options: RequiredCrossChainOptions): Promise; private getCalculationResult; protected getRoutePath(fromToken: PriceTokenAmount, toToken: PriceTokenAmount): Promise; protected getFeeInfo(fromBlockchain: EddyBridgeSupportedChain, providerAddress: string, percentFeeToken: PriceTokenAmount, useProxy: boolean): Promise; }