import { Component } from 'react'; declare const Pagination: (props: any) => import('react').FunctionComponentElement; declare class PagedAPIView extends Component { static defaultProps: { count: null; perPage: number; topPagination: boolean; bottomPagination: boolean; extraPagination: null; opts: {}; params: {}; getTotalCount(response: any): number; }; constructor(props: any); setPage(i: any): () => void; renderPagination(): import('react').DOMElement, Element>; lastPage(): number | null; currentPage(): any; params(): any; render(): import('react').DOMElement<{ readonly [x: string]: any; }, Element>; } export { PagedAPIView, Pagination };