import { Redis } from 'ioredis'; import { ShipBlockResponse } from '../../types/ship'; import { IProcessedBlockRepository } from '../../types/interfaces'; export declare class RedisBlockRepository implements IProcessedBlockRepository { private readonly redis; constructor(redis: Redis); updateReversibleBlock(resp: ShipBlockResponse): Promise; getLastProcessedBlock(): Promise; getReversibleBlocks(): Promise>; updateLastProcessedBlock(resp: ShipBlockResponse): Promise; }