import { BlockHeader } from '@liskhq/lisk-chain'; import { BFTParametersCache } from './bft_params'; import { BFTVotes } from './schemas'; export declare const insertBlockBFTInfo: (bftVotes: BFTVotes, header: BlockHeader, maxLength: number) => void; export declare const getHeightNotPrevoted: (bftVotes: BFTVotes) => number; export declare const updatePrevotesPrecommits: (bftVotes: BFTVotes, paramsCache: BFTParametersCache) => Promise; export declare const updateMaxHeightPrevoted: (bftVotes: BFTVotes, paramsCache: BFTParametersCache) => Promise; export declare const updateMaxHeightPrecommitted: (bftVotes: BFTVotes, paramsCache: BFTParametersCache) => Promise; export declare const updateMaxHeightCertified: (bftVotes: BFTVotes, header: BlockHeader) => void;