/// import type { RowAction } from './typings'; interface Props { actions: (RowAction | null)[] | ((record: T, index: number) => (RowAction | null)[]); row: T; index: number; } export default function Actions(props: Props): JSX.Element; export {};