/** * Commit type and creator */ import { CommitSignature } from './commit-signature'; import { BlockId } from '../header/block-id'; export interface Commit { readonly height: number; readonly round: number; readonly blockId: BlockId; readonly signatures: readonly CommitSignature[]; } export declare const CommitCodec: import("../../../codec").BaseCodec; export declare function createCommit(data: unknown): Commit;