import { RichText } from '../../../types'; import * as React from 'react'; export interface PaginationProps { /** * RichText with the summary of the pagination. * * @default undefined */ summary?: RichText; /** * React node with pages buttons. * * @default undefined */ pages: React.ReactNode; /** * React node for changing number of displayed rows. * * @default undefined */ limits?: React.ReactNode; /** * React node for jumping to a specific page. * * @default undefined */ jump?: React.ReactNode; } export declare const Pagination: React.FC & { Jump: React.FC; Pages: React.FC; Limits: React.FC; };