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