import { Network } from '../../constants'; import { Transaction } from '../../constants'; interface GetBlockInput { network: Network; block: number | string; } interface BlockHeader { Version: number; PrevBlockHash: string; TransactionsRoot: string; BlockRoot: string; Timestamp: number; Height: number; ConsensusData: number; ConsensusPayload: string; NextBookkeeper: string; Bookkeepers: string[]; SigData: string[]; Hash: string; } interface Block { Hash: string; Size: number; Header: BlockHeader; Transactions: Transaction[]; } export declare function getBlock({ network, block }: GetBlockInput): Promise; export {}; //# sourceMappingURL=getBlock.d.ts.map