/** * HeightVoteSet type and creator */ export interface VoteSet { readonly round: number; readonly prevotes: readonly string[]; readonly prevotesCount: number; readonly precommits: readonly string[]; readonly precommitsCount: number; } export declare const VoteSetCodec: import("../../../codec").BaseCodec; export interface HeightVoteSet { readonly height: number; readonly round: number; readonly step: number; readonly voteSets?: readonly VoteSet[]; } export declare const HeightVoteSetCodec: import("../../../codec").BaseCodec; export declare function createHeightVoteSet(data: unknown): HeightVoteSet;