ResponseCommit: {
    typeUrl: string;
    decode(input: Uint8Array | BinaryReader, length?: number): ResponseCommit;
    encode(message: ResponseCommit, writer?: BinaryWriter): BinaryWriter;
    fromAmino(object: ResponseCommitAmino): ResponseCommit;
    fromAminoMsg(object: ResponseCommitAminoMsg): ResponseCommit;
    fromPartial(object: {
        data?: Uint8Array;
        retainHeight?: bigint;
    }): ResponseCommit;
    fromProtoMsg(message: ResponseCommitProtoMsg): ResponseCommit;
    toAmino(message: ResponseCommit): ResponseCommitAmino;
    toProto(message: ResponseCommit): Uint8Array;
    toProtoMsg(message: ResponseCommit): ResponseCommitProtoMsg;
}