import * as React from 'react'; declare module PagingControls { interface Props extends React.ClassAttributes { id: string; containerClass?: string; currentPage: number; totalPages: number; handlePageChange: (newPage: number | string) => void; byContext?: { prevContextToken: string; nextContextToken: string; }; locale: string; children?: React.ReactNode; key?: React.ReactText; ref?: React.Ref; } interface State { wordings?: { [key: string]: string; }; } } declare class PagingControls extends React.Component { private goToPageInput; constructor(props: PagingControls.Props); render(): JSX.Element; private handleGoToPageInput; private goToFirstPage; private goToNextPage; private goToPrevPage; private goToLastPage; } export default PagingControls;