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

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

export { type BitcoinAddress, getBTCPegInAddress };
