import { Bitcoind } from '../../types.js';
type GenerateToAddressParams = {
    bitcoind: Bitcoind;
    nblocks: number;
    address: string;
    maxtries?: number;
};
/**
 * generatetoaddress nblocks "address" ( maxtries )
 *
 * Mine to a specified address and return the block hashes.
 *
 */
export declare function generateToAddress(params: GenerateToAddressParams): Promise<any>;
export {};
//# sourceMappingURL=generate-to-address.d.ts.map