import type { ComponentPropsWithoutRef } from 'react'; export type PaginationFootProps = ComponentPropsWithoutRef<'div'> & { pageIndex: number; pageSize: number; totalItems: number; totalPages: number; onPageChange: (pageIndex: number) => void; label?: string; }; declare function PaginationFoot({ className, label, onPageChange, pageIndex, pageSize, totalItems, totalPages, ...props }: PaginationFootProps): import("react/jsx-runtime").JSX.Element | null; export default PaginationFoot;