import type { ButtonHTMLAttributes, FC, ReactNode, Ref } from 'react'; export interface PaginationNextProps extends ButtonHTMLAttributes { children?: ReactNode; ref?: Ref; } export declare const PaginationNext: FC;