import { TranslationFunction } from 'i18next';
import * as React from 'react';
import { TableRowAction } from './TableComponent.types';
import { Row } from './TableComponent.types';
interface TableActionProps {
    actions: Array<TableRowAction>;
    t: TranslationFunction;
    row: Row;
}
export declare const TableActionsColumn: React.ComponentType<TableActionProps>;
export {};
