import { TableActionName } from '@geenee/ui/src/lib/component/styled-table'; declare type Props = { rowActions?: { id: TableActionName; onClick: (item: T) => void; }[]; row: T; }; export declare const RowActions: ({ rowActions, row }: Props) => JSX.Element; export {};