import type { TableRowAction } from './types'; type ActionCellProps = { record: T; actions: TableRowAction[]; }; export default function ActionCell({ record, actions }: ActionCellProps): import("react/jsx-runtime").JSX.Element; export {};