import type { Block, Hash } from 'viem'; /** * Get the current block number for a specific network */ export declare function getBlockNumber(network?: string): Promise; /** * Get a block by number for a specific network */ export declare function getBlockByNumber(blockNumber: number, network?: string): Promise; /** * Get a block by hash for a specific network */ export declare function getBlockByHash(blockHash: Hash, network?: string): Promise; /** * Get the latest block for a specific network */ export declare function getLatestBlock(network?: string): Promise;