import { default as React } from 'react'; export type PaginationProps = { /** Total number of pages */ totalPages: number; /** Function to call when a new page is selected */ callout: (page: number) => void; /** The current page passed in by the parent */ currentPage: number; /** Optional prop to add a test id to the Pagination for QA testing */ qaTestId?: string; }; declare const Pagination: ({ totalPages, callout, currentPage, qaTestId, }: PaginationProps) => React.JSX.Element; export default Pagination;