import React from 'react'; import { ProActionButtonProps } from '../../../actions'; import { ProTableActionType, innerRowSelectionType, rowSelectionType } from '../../typing'; interface QuickActionProps { quickAction?: ProActionButtonProps | React.ReactNode | React.ReactNode[]; actionRef: React.MutableRefObject; rowSelection?: innerRowSelectionType | rowSelectionType; dataTeamixSpm?: string; } declare const QuickAction: React.FC; export default QuickAction;