/** * Vote type and creator */ import { BlockId } from '../header/block-id'; export interface Vote { readonly type: number; readonly height: number; readonly round: number; readonly blockId: BlockId; readonly timestamp: Date; readonly validatorAddress: Uint8Array; readonly validatorIndex: number; readonly signature: Uint8Array; } export declare const VoteCodec: import("../../../codec").BaseCodec; export declare function createVote(data: unknown): Vote;