import { Bitcoind } from '../../types';
type GenerateToDescriptorParams = {
    bitcoind: Bitcoind;
    num_blocks: number;
    descriptor: string;
    maxtries?: number;
};
/**
 * generatetodescriptor num_blocks "descriptor" ( maxtries )
 *
 * Mine to a specified descriptor and return the block hashes.
 *
 */
export declare function generateToDescriptor(params: GenerateToDescriptorParams): Promise<any>;
export {};
