import type { DataTableCellOrColumnActions } from './user-actions-types.js'; /** * Unified hook to get the actions for 'cell' or 'header' contexts. * InlineUserActionsMenu consumes this one. */ export declare function useCellAndColumnActions(props: { enabled: boolean; headerGroupOrRowId: string; columnId: string; type: 'cell' | 'header'; }): DataTableCellOrColumnActions;