import React from "react"; export interface Props { pages: Array; currentPageNumber: number; previous?: string; next?: string; classes?: string; hideRangeIndicator?: boolean; dataTestId?: string; } export interface Page { url: string; onClick: () => void; } export declare const Pagination: (props: Props) => React.JSX.Element;