import * as React from 'react'; interface TableFooterPaginationProps { /** * Current page number (1-indexed) */ currentPage: number; /** * Total number of pages */ totalPages: number; /** * Callback when page changes */ onPageChange: (page: number) => void; /** * Total number of results */ totalResults: number; /** * Number of results currently showing */ currentResults: number; /** * Items per page */ itemsPerPage: number; /** * Callback when items per page changes */ onItemsPerPageChange?: (itemsPerPage: number) => void; /** * Callback when expand table is clicked */ onExpandTable?: () => void; /** * Custom className */ className?: string; /** * Custom style */ style?: React.CSSProperties; /** * Test ID for testing */ 'data-testid'?: string; } /** * TableFooterPagination component - Arbor Design System * * A table footer component with result count, pagination, and table controls. */ declare const TableFooterPagination: React.ForwardRefExoticComponent>; export { TableFooterPagination, type TableFooterPaginationProps };