import { type ComponentPropsWithoutRef } from 'react'; type PaginationHeadProps = ComponentPropsWithoutRef<'div'> & { pageSize: number; totalItems: number; onPaginationChange: (next: { pageSize: number; pageIndex: number; }) => void; label?: string; pageSizeOptions?: number[]; }; declare function PaginationHead({ className, id, label, onPaginationChange, pageSize, pageSizeOptions, totalItems, ...props }: PaginationHeadProps): import("react/jsx-runtime").JSX.Element; export default PaginationHead; export type { PaginationHeadProps };