import { Bitcoind, Json } from '../../types'; type CreateWalletDescriptorParams = { bitcoind: Bitcoind; type: string; options?: Json; }; /** * createwalletdescriptor "type" ( {"internal":bool,"hdkey":"str",...} ) * * Creates the wallet's descriptor for the given address type. The address type must be one that the wallet does not already have a descriptor for. * Requires wallet passphrase to be set with walletpassphrase call if wallet is encrypted. * */ export declare function createWalletDescriptor(params: CreateWalletDescriptorParams): Promise; export {};