import { Bitcoind } from '../../types'; type AddMultisigAddressParams = { bitcoind: Bitcoind; nrequired: number; keys: Array; label?: string; address_type?: string; }; /** * addmultisigaddress nrequired ["key",...] ( "label" "address_type" ) * * Add an nrequired-to-sign multisignature address to the wallet. Requires a new wallet backup. * Each key is a Bitcoin address or hex-encoded public key. * This functionality is only intended for use with non-watchonly addresses. * See `importaddress` for watchonly p2sh address support. * If 'label' is specified, assign address to that label. * Note: This command is only compatible with legacy wallets. * */ export declare function addMultisigAddress(params: AddMultisigAddressParams): Promise; export {};