Bip122Rpc: {
    methods: {
        broadcastPsbt: RpcMethod<{
            account: {
                address: string;
            };
            psbt: string;
        }, {
            txid: string;
        }>;
        computeFee: RpcMethod<{
            account: {
                address: string;
            };
            psbt: string;
        }, {
            fee: string;
        }>;
        fillPsbt: RpcMethod<{
            account: {
                address: string;
            };
            psbt: string;
        }, {
            psbt: string;
        }>;
        getUtxo: RpcMethod<{
            account: {
                address: string;
            };
            outpoint: string;
        }, Utxo>;
        sendTransfer: RpcMethod<{
            account: {
                address: string;
            };
            feeRate?: number;
            recipients: {
                address: string;
                amount: string;
            }[];
        }, {
            txid: string;
        }>;
        signMessage: RpcMethod<{
            account: {
                address: string;
            };
            message: string;
        }, {
            signature: string;
        }>;
        signPsbt: RpcMethod<{
            account: {
                address: string;
            };
            feeRate?: number;
            options: {
                broadcast: boolean;
                fill: boolean;
            };
            psbt: string;
        }, {
            psbt: string;
            txid: string | null;
        }>;
    };
}