import React from 'react'; import PaginationPrevious from './pagination-previous'; import PaginationNext from './pagination-next'; import { NormalSizes } from '../utils/prop-types'; interface Props { size?: NormalSizes; page?: number; initialPage?: number; count?: number; limit?: number; onChange?: (val: number) => void; } declare const defaultProps: { size: "mini" | "small" | "medium" | "large"; initialPage: number; count: number; limit: number; }; type NativeAttrs = Omit, keyof Props>; export type PaginationProps = Props & typeof defaultProps & NativeAttrs; type MemoPaginationComponent

= React.NamedExoticComponent

& { Previous: typeof PaginationPrevious; Next: typeof PaginationNext; }; type ComponentProps = Partial & Omit & NativeAttrs; declare const _default: MemoPaginationComponent; export default _default;