import type { DataTableV2CellOrColumnActions } from './UserActions.js'; /** * Unified hook to get the builtin and custom actions for 'cell' or 'header' * contexts. FloatingMenu / ColumnActions / CellActions consume this one. */ export declare function useCellActions(props: { enabled: boolean; rowId: string; columnId: string; type: 'cell' | 'header'; }): DataTableV2CellOrColumnActions;