interface GetBlockTxsByHeightInput { height: number; network: string; } interface BlockWithTxList { Hash: string; Height: number; Transactions: string[]; } export declare function getBlockTxsByHeight(data: GetBlockTxsByHeightInput): Promise; export {}; //# sourceMappingURL=getBlockTxsByHeight.d.ts.map