import type { DataTableRowIdentification } from './row-identification-types.js'; import type { TableOptions } from '../../hooks/useTable/types.js'; import type { DataTableRowData } from '../../public.api.js'; /** * Constant by which the row ids will be joined when using a custom row id * in combination with subrows. * @public */ export declare const DATA_TABLE_ROW_ID_SEPARATOR = "\u21B3"; /** * Configuration hook for the rowInteractivity in the DataTable. * @internal */ export declare function useRowIdentification(props: DataTableRowIdentification, options: TableOptions): void;