import { PriceToken, PriceTokenAmount } from "../../../../../common/tokens"; import { BlockchainName, 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 { SymbiosisToken } from "./models/symbiosis-trade-data"; import { SymbiosisCrossChainSupportedBlockchain } from './models/symbiosis-cross-chain-supported-blockchains'; export declare class SymbiosisCrossChainProvider extends CrossChainProvider { readonly type: "symbiosis"; isSupportedBlockchain(blockchain: BlockchainName): blockchain is SymbiosisCrossChainSupportedBlockchain; areSupportedBlockchains(fromBlockchain: BlockchainName, toBlockchain: BlockchainName): boolean; calculate(from: PriceTokenAmount, toToken: PriceToken, options: RequiredCrossChainOptions): Promise; private getPromotions; protected getFeeInfo(fromBlockchain: SymbiosisCrossChainSupportedBlockchain, providerAddress: string, percentFeeToken: PriceTokenAmount, useProxy: boolean): Promise; protected getRoutePath(fromToken: PriceTokenAmount, toToken: PriceTokenAmount, route: SymbiosisToken[]): Promise; private getSwapParamsToAddress; private handleMinAmountError; private getEmptyTrade; private getTokenAddress; private checkTokenLimits; private getFakeAddress; }