import type { ReactNode } from 'react'; import type { CommonProps } from '../types.js'; export interface TableHeaderRowProps extends CommonProps { /** The header cells that belong to this header row. */ children: ReactNode; /** * The row's position within the full dataset, including headers. * * Provide this value if your table presents a subset of rows, such as when using pagination. * * This number must be: * - greater than or equal to `1` * - greater than the `rowNumber` of any previous rows * - less than or equal to the `totalRowCount` of the parent `Table` * * Use together with `totalRowCount` on the `Table` component. */ rowNumber?: number; } /** * Renders a row within a table header. * * See [table usage guidelines](https://ui.cimpress.io/components/table/) and [table building guide](https://ui.cimpress.io/dev-guides/tables/). */ declare const _TableHeaderRow: (props: TableHeaderRowProps & import("react").RefAttributes) => import("react").JSX.Element | null; export { _TableHeaderRow as TableHeaderRow }; //# sourceMappingURL=table-header-row.d.ts.map