import React from "react"; import "../../scss/components/shared/common/Pagination.scss"; interface IPropsPagination { handleClickPrevious: () => void; handleClickNext: () => void; elementTypeName: string; elementTypeNamePlural: string; numberOfElementsDisplayed: number; totalNumberOfElements: number; pageNumber: number; maximumOfElementsToBeDisplay: number; isHiddenWhenNoElements?: boolean; lang?: string; } export default class PaginationComponent extends React.Component { props: IPropsPagination; static defaultProps: Partial; constructor(props: IPropsPagination); render(): JSX.Element | null; shouldComponentUpdate(nextProp: IPropsPagination): boolean; } export {};