import { default as React } from 'react'; export declare const itemsPerPageClassName = "teddy-pagination-items-per-page"; /** * Props for the Pagination ItemsPerPage component */ export type ItemsPerPageProps = { /** * Current items per page value */ itemsPerPage: number; /** * Available options for items per page * @default [10, 25, 50, 100] */ options?: number[]; /** * Callback function when items per page changes */ onItemsPerPageChange: (itemsPerPage: number) => void; /** * Additional CSS class name */ className?: string; /** * Custom label text * @default 'Items per page' */ label?: string; }; /** * ItemsPerPage component for pagination, providing a dropdown to select * the number of items displayed per page. */ export declare const ItemsPerPage: React.FC;