import { type TableOptions } from '@tanstack/react-table'; import type { DataTableSubRowsProps } from './sub-rows-types.js'; import type { DataTableRowData } from '../../row-data-types.js'; import type { TDataTableFeatures } from '../types/features.types.js'; /** * Default accessor for the subRows * @internal */ export declare function defaultSubRowsAccessor(originalRow: TData): TData[]; /** * Configuration hook for subrows of the DataTable. * @internal */ export declare function useSubRows(props: DataTableSubRowsProps, options: TableOptions>): void;