/// <reference types="react" />
import { Action } from '@/core/interfaces';
interface BodyCellActionProps {
    isLastCell: boolean;
    actions?: Action<any>[];
    rowData?: any;
}
declare function BodyCellAction(props: BodyCellActionProps): JSX.Element;
declare namespace BodyCellAction {
    var defaultProps: {
        actions: never[];
        rowData: undefined;
    };
}
export default BodyCellAction;
