import type { FC, HTMLAttributes, Ref } from 'react'; export interface PaginationEllipsisProps extends HTMLAttributes { /** Index of this ellipsis within the pages array (required by Ark). */ index: number; ref?: Ref; } export declare const PaginationEllipsis: FC;