import { CellContext, Row } from '@tanstack/react-table'; import { ReactNode } from 'react'; import { ColumnDef, IAction, ICustomAction, RowActionsState } from '../../../types'; type TableLocale = 'en' | 'no'; export declare function generateActionsColumn(options: { headerPin: boolean; actions?: (row: Row) => (IAction | ICustomAction)[]; customActionsNode?: (row: CellContext) => ReactNode; rowHeight?: number; customActionsColumnProps?: Partial>; rowActionsState?: (row: Row) => RowActionsState | undefined; locale?: TableLocale; }): ColumnDef; export {};