import type { RowData, TableOptions } from '@tanstack/react-table'; import { type PropsWithChildren } from 'react'; import type { DataTableColumnDef, DataTableRowData } from '../../public.api.js'; import type { TDataTableFeatures } from '../types/features.types.js'; /** * Configuration hook for the DataTable UserActions feature * @internal */ export declare function useUserActions(props: PropsWithChildren, options: TableOptions, consumerColumnDefMap: Map>): void;