import { ReactNode } from 'react'; export interface TableLabels { selectAll: string; selectRow: (rowId: string | number) => string; rowsPerPage: string; /** * Renders the displayed-rows summary in the pagination footer. Returns * a `ReactNode` so the default can emphasise the active range * (`from-to`) with a bolder weight while keeping the trailing * ` of total` muted. Override to localise wording or restyle. */ paginationOf: (from: number, to: number, total: number) => ReactNode; /** aria-label for the first-page pagination button. */ firstPage: string; /** aria-label for the previous-page pagination button. */ previousPage: string; /** aria-label for the next-page pagination button. */ nextPage: string; /** aria-label for the last-page pagination button. */ lastPage: string; } export declare const DEFAULT_TABLE_LABELS: TableLabels;