import React, { HTMLProps, ReactNode } from "react";
type PaginationRightBaseProps = {
    children: ReactNode;
    rightBaseProps?: HTMLProps<HTMLUListElement>;
};
/**
 * PaginationRightBase is the right side of the pagination container
 * Contains the page navigation controls
 */
declare const PaginationRightBase: React.FC<PaginationRightBaseProps>;
export default PaginationRightBase;
