import { PaginationProps } from './pagination.types'; /** * # Pagination * * A component that allows users to navigate through pages and control page size. * Combines a page size selector and page navigator for comprehensive pagination control. * * @see {@link https://nimbus-documentation.vercel.app/components/pagination} */ export declare const Pagination: { (props: PaginationProps): import("react/jsx-runtime").JSX.Element; displayName: string; };