import { Bitcoind } from '../../types'; type GetDifficultyParams = { bitcoind: Bitcoind; }; /** * getdifficulty * * Returns the proof-of-work difficulty as a multiple of the minimum difficulty. * */ export declare function getDifficulty(params: GetDifficultyParams): Promise; export {};