///
import { type TooltipProps } from '../Tooltip';
import type { MainActionKind, SecondaryActionKind } from './types';
export type Actions = {
/**
* Основные действия
*/
main: MainActionKind[];
/**
* Второстепенные действия
*/
secondary?: SecondaryActionKind[];
};
export type ActionsCellProps = {
actions: Actions;
/**
* Данные строки из DataGrid
*/
row: T;
/**
* @deprecated Положение тултипа инкапсулировано внутри ActionCell
*/
tooltipPlacement?: TooltipProps['placement'];
};
export declare const ActionCell: (props: ActionsCellProps) => JSX.Element;