import { Repositories } from "@arkecosystem/core-database"; export declare type DelegateForgedBlock = { generatorPublicKey: string; totalRewards: string; totalFees: string; totalProduced: number; }; export declare type LastForgedBlock = { id: string; height: string; generatorPublicKey: string; timestamp: number; }; export declare const setDelegateForgedBlocks: (blocks: DelegateForgedBlock[]) => void; export declare const setLastForgedBlocks: (blocks: LastForgedBlock[]) => void; declare class BlockRepositoryMock implements Partial { getDelegatesForgedBlocks(): Promise; getLastForgedBlocks(): Promise; } export declare const instance: BlockRepositoryMock; export {}; //# sourceMappingURL=block-repository.d.ts.map