import BigNumber from 'bignumber.js';
import { PriceTokenAmount } from "../../../../../../common/tokens";
import { BitcoinBlockchainName, BlockchainName } from "../../../../../../core/blockchain/models/blockchain-name";
import { BitcoinEncodedConfig } from "../../../../../../core/blockchain/web3-private-service/web3-private/bitcoin-web3-private/models/bitcoin-encoded-config";
import { EvmEncodeConfig } from "../../../../../../core/blockchain/web3-pure/typed-web3-pure/evm-web3-pure/models/evm-encode-config";
import { BitcoinCrossChainTrade } from "../../common/bitcoin-cross-chain-trade/bitcoin-cross-chain-trade";
import { CrossChainTradeType } from '../../../models/cross-chain-trade-type';
import { GasData } from '../../common/evm-cross-chain-trade/models/gas-data';
import { BridgeType } from '../../common/models/bridge-type';
import { FeeInfo } from '../../common/models/fee-info';
import { OnChainSubtype } from '../../common/models/on-chain-subtype';
import { TradeInfo } from '../../common/models/trade-info';
import { RangoCrossChainTradeConstructorParams } from '../model/rango-cross-chain-parser-types';
export declare class RangoBitcoinCrossChainTrade extends BitcoinCrossChainTrade {
    readonly type: CrossChainTradeType;
    readonly isAggregator: boolean;
    readonly to: PriceTokenAmount<BlockchainName>;
    readonly from: PriceTokenAmount<BitcoinBlockchainName>;
    readonly toTokenAmountMin: BigNumber;
    readonly feeInfo: FeeInfo;
    readonly onChainSubtype: OnChainSubtype;
    readonly bridgeType: BridgeType;
    readonly gasData: GasData;
    readonly priceImpact: number | null;
    private readonly slippage;
    /**
     * @description UUID returned by rango-api to track transaction status in getRangoDstSwapStatus
     */
    rangoRequestId: string | undefined;
    private readonly swapQueryParams;
    private get fromBlockchain();
    protected get fromContractAddress(): string;
    protected get methodName(): string;
    readonly memo: string;
    constructor(params: RangoCrossChainTradeConstructorParams<BitcoinBlockchainName>);
    protected getTransactionConfigAndAmount(receiverAddress?: string): Promise<{
        config: EvmEncodeConfig | BitcoinEncodedConfig;
        amount: string;
    }>;
    getTradeInfo(): TradeInfo;
}
