export interface LatestBlockHashType { hash: string; timestamp: number; } type GetLatestBlockHashType = { apiAddress: string; blockHashShard?: number; getBlockHash: () => Promise; noCache?: boolean; }; export declare function getLatestBlockHash({ apiAddress, noCache, blockHashShard, getBlockHash }: GetLatestBlockHashType): Promise; export {};