import type { RowAction } from '../types'; interface RowDropDownActionsProps { actions: RowAction[]; rowData: { record: T; index: number; }; } declare const RowDropDownActions: (props: RowDropDownActionsProps) => JSX.Element; export default RowDropDownActions;