import { KnownChainId } from '../utils/types/knownIds.js';
import '../xlinkSdkUtils/types.js';
import '../utils/BigNumber.js';
import 'big.js';
import '../utils/typeHelpers.js';

interface BitcoinAddress {
    address: string;
    scriptPubKey: Uint8Array;
}
declare function getBTCPegInAddress(fromChain: KnownChainId.BitcoinChain, toChain: KnownChainId.KnownChain): undefined | BitcoinAddress;

export { type BitcoinAddress, getBTCPegInAddress };
