import type { FC, ReactNode, Ref } from 'react'; import type { PaginationPage } from './types'; export interface PaginationListProps { className?: string; /** Optional override for rendering each page entry. */ children?: (page: PaginationPage, index: number) => ReactNode; ref?: Ref; } export declare const PaginationList: FC;