///
///
import { Address, BN } from 'ethereumjs-util';
export type CliqueSignerState = [BN, Address[]];
export type CliqueLatestSignerStates = CliqueSignerState[];
export type CliqueVote = [BN, [Address, Address, Buffer]];
export type CliqueLatestVotes = CliqueVote[];
export type CliqueBlockSigner = [BN, Address];
export type CliqueLatestBlockSigners = CliqueBlockSigner[];
export declare const CLIQUE_NONCE_AUTH: Buffer;
export declare const CLIQUE_NONCE_DROP: Buffer;