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; }; declare type NativeAttrs = Omit, keyof Props>; export declare type PaginationProps = Props & typeof defaultProps & NativeAttrs; declare type MemoPaginationComponent

= React.NamedExoticComponent

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