UNPKG

xbpr

Version:

xbp react ui by @arco-design/web-react

12 lines (11 loc) 378 B
import React from 'react'; import { PaginationProps } from './interface'; export interface PaginationState { current: number; pageSize: number; total?: number; showMore?: boolean; } declare const PaginationComponent: React.ForwardRefExoticComponent<PaginationProps & React.RefAttributes<unknown>>; export default PaginationComponent; export { PaginationProps };