import React from 'react';
import { type PaginationPropTypes } from './types';
/**
 * __Pagination__
 *
 * Pagination allows you to divide large amounts of content into smaller chunks across multiple pages.
 *
 * - [Examples](https://atlassian.design/components/pagination/examples)
 * - [Code](https://atlassian.design/components/pagination/code)
 * - [Usage](https://atlassian.design/components/pagination/usage)
 */
declare const Pagination: <T>(props: PaginationPropTypes<T> & {
    ref?: React.Ref<HTMLDivElement>;
}) => React.ReactElement;
export default Pagination;
