import React from 'react'; import { PaginationProps } from './type'; export type { PaginationProps }; export interface ItemProps { active?: boolean; prev?: boolean; next?: boolean; disabled?: boolean; } declare const Pagination: React.ForwardRefExoticComponent & React.RefAttributes>; export default Pagination;