LastCommitInfo: {
    typeUrl: string;
    decode(input: Uint8Array | BinaryReader, length?: number): LastCommitInfo;
    encode(message: LastCommitInfo, writer?: BinaryWriter): BinaryWriter;
    fromAmino(object: LastCommitInfoAmino): LastCommitInfo;
    fromAminoMsg(object: LastCommitInfoAminoMsg): LastCommitInfo;
    fromPartial(object: {
        round?: number;
        votes?: {
            signedLastBlock?: boolean;
            validator?: {
                address?: Uint8Array;
                power?: bigint;
            };
        }[];
    }): LastCommitInfo;
    fromProtoMsg(message: LastCommitInfoProtoMsg): LastCommitInfo;
    toAmino(message: LastCommitInfo): LastCommitInfoAmino;
    toProto(message: LastCommitInfo): Uint8Array;
    toProtoMsg(message: LastCommitInfo): LastCommitInfoProtoMsg;
}