import React from 'react'; import type { UIFlexibleTableProps } from './types.js'; export interface RowActionsProps { rowIndex: number; onMoveDownClick?: () => void; onMoveUpClick?: () => void; onFocusRowAction: (name: string) => void; tableProps: UIFlexibleTableProps; } /** * RowActions component. * * @param {RowActionsProps} props * @returns {React.ReactElement} */ export declare function RowActions(props: Readonly>): React.ReactElement; //# sourceMappingURL=RowActions.d.ts.map