UNPKG

baseui

Version:

A React Component library implementing the Base design language

14 lines (13 loc) 495 B
import * as React from 'react'; import type { StatefulPaginationProps } from './types'; declare function StatefulPagination({ numPages, initialState, stateReducer, onPageChange, ...props }: StatefulPaginationProps): React.JSX.Element; declare namespace StatefulPagination { var defaultProps: { initialState: { currentPage: number; }; stateReducer: (changeType: any, changes: any) => any; overrides: {}; }; } export default StatefulPagination;