import { XLinkSDKErrorBase } from '../utils/errors.js';
import '../xlinkSdkUtils/types.js';
import '../utils/BigNumber.js';
import 'big.js';
import '../utils/typeHelpers.js';

declare class InsufficientBitcoinBalanceError extends XLinkSDKErrorBase {
    constructor(...args: ConstructorParameters<typeof Error>);
}
declare class UnsupportedBitcoinInput extends XLinkSDKErrorBase {
    txid: string;
    index: number;
    constructor(txid: string, index: number, ...args: ConstructorParameters<typeof Error>);
}

export { InsufficientBitcoinBalanceError, UnsupportedBitcoinInput };
