import * as React from 'react'; interface PaginationProps { /** * Current page number (1-indexed) */ currentPage: number; /** * Total number of pages */ totalPages: number; /** * Callback when page changes */ onPageChange: (page: number) => void; /** * Custom className */ className?: string; /** * Custom style */ style?: React.CSSProperties; /** * Test ID for testing */ 'data-testid'?: string; } /** * Pagination component - Arbor Design System * * A pagination control with first/previous/next/last buttons and a page input field. */ declare const Pagination: React.ForwardRefExoticComponent>; export { Pagination, type PaginationProps };