import { ReactElement, MouseEvent } from 'react'; import { IconName } from '../../Icon'; import { CommonProps } from '../../common'; interface RowActionProps extends CommonProps { /** * List of actions to be shown in the action menu, it contains at least 1 actions. * */ actions: { divider?: 'top' | 'bottom'; icon?: IconName; intent?: 'text' | 'danger'; onClick?: (e: MouseEvent) => void; text: string; }[]; } declare const RowAction: ({ actions, id, className, style, sx, "data-test-id": dataTestId, }: RowActionProps) => ReactElement; export default RowAction;