import React, { ReactNode } from 'react';
import { NormalSizes } from '../utils/prop-types';
interface Props {
    count: number;
    size?: NormalSizes;
    labelJumperBefore?: ReactNode | string;
    labelJumperAfter?: ReactNode | string;
}
declare type NativeAttrs = Omit<React.HTMLAttributes<any>, keyof Props>;
export declare type PaginationQuickJumperProps = React.PropsWithChildren<Props & NativeAttrs>;
declare const PaginationNext: React.FC<PaginationQuickJumperProps>;
export default PaginationNext;
