import { Bitcoind } from '../../types'; type GetBlockParams = { bitcoind: Bitcoind; blockhash: string; verbosity?: number; }; /** * getblock "blockhash" ( verbosity ) * * If verbosity is 0, returns a string that is serialized, hex-encoded data for block 'hash'. * If verbosity is 1, returns an Object with information about block 'hash'. * If verbosity is 2, returns an Object with information about block and information about each transaction. * If verbosity is 3, returns an Object with information about block and information about each transaction, including prevout information for inputs (only for unpruned blocks in the current best chain). * */ export declare function getBlock(params: GetBlockParams): Promise; export {};