///
import type { RowActionsType } from '../typings';
import type { ICellRendererParams } from 'ag-grid-community';
interface Props {
actions: RowActionsType;
data: T;
params: ICellRendererParams;
maxShowCount?: number;
}
export default function Actions(props: Props): JSX.Element;
export {};