import { Blockchain } from "@arkecosystem/core-blockchain"; import { Interfaces } from "@arkecosystem/crypto"; export declare const setBlock: (block: Partial | undefined) => void; export declare const setIsSynced: (isSynced: boolean) => void; declare class BlockchainMock implements Partial { getLastBlock(): Interfaces.IBlock; getLastHeight(): number; isSynced(block?: any): boolean; removeBlocks(nblocks: number): Promise; } export declare const instance: BlockchainMock; export {}; //# sourceMappingURL=blockchain.d.ts.map