import type { BlockchainBlock } from './BlockchainBlock';
export type BlockchainBlocks = {
    blocks: Array<BlockchainBlock>;
};
