Hi,
I think that Mohamed didn't understand your question.
The prev/next can be added to the previous and next links of the pagination without too much issue by changing for example the code:
$html .= "<a class=\"pagenav_previous_chevron\" onclick=\"javascript: document.adminForm".$this->hikaSuffix.$this->form.".limitstart".$this->hikaSuffix.".value=".$list['previous']['base']."; document.adminForm".$this->hikaSuffix.$this->form.".submit();return false;\"> < </a>";
to:
$html .= "<a rel=\"prev\" class=\"pagenav_previous_chevron\" onclick=\"javascript: document.adminForm".$this->hikaSuffix.$this->form.".limitstart".$this->hikaSuffix.".value=".$list['previous']['base']."; document.adminForm".$this->hikaSuffix.$this->form.".submit();return false;\"> < </a>";
in administrator/components/com_hikashop/helpers/pagination.php
however, as the pagination is handled with a form (that's because we use the Joomla way of having a pagination), I don't think that it will help.