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'; export declare class TeleSwapCcrProvider extends CrossChainProvider { readonly type: "tele_swap"; isSupportedBlockchain(blockchain: BlockchainName): boolean; calculate(from: PriceTokenAmount, toToken: PriceToken, options: RequiredCrossChainOptions): Promise; protected getFeeInfo(fromBlockchain: Partial, providerAddress: string, percentFeeToken: PriceTokenAmount, useProxy: boolean): Promise; protected getRoutePath(from: PriceTokenAmount, to: PriceTokenAmount): Promise; }