import React, { type CSSProperties } from "react"; import { RegisteredLinkProps } from "./link"; export type PaginationProps = { id?: string; className?: string; count: number; defaultPage?: number; classes?: Partial>; style?: CSSProperties; showFirstLast?: boolean; getPageLinkProps: (pageNumber: number) => RegisteredLinkProps; }; /** @see */ export declare const Pagination: React.MemoExoticComponent>>; declare const addPaginationTranslations: (params: { lang: string; messages: Partial<{ "first page": string; "previous page": string; "next page": string; "last page": string; "aria-label": string; }>; }) => void; export { addPaginationTranslations }; export default Pagination;