///
import type { MainActionKind, SecondaryActionKind } from './types';
export type DataGridActions = {
/**
* Основные действия
*/
main: MainActionKind[];
/**
* Вторичные действия
*/
secondary?: SecondaryActionKind[];
};
export type DataGridActionCellProps = {
/**
* Действия
*/
actions: DataGridActions;
/**
* Данные строки
*/
row: TRow;
};
export declare const DataGridActionCell: (props: DataGridActionCellProps) => JSX.Element;