import { type MouseEventHandler } from 'react'; import { type DataGridActionCellProps } from '../DataGridActionCell'; import type { NestedAction, SingleAction } from '../types'; type UseLogicParams = DataGridActionCellProps; export declare const useLogic: ({ row, actions, }: UseLogicParams) => { isDisabledAction: boolean; handleActionClick: (onClick: ((row: TRowData) => void) | (MouseEventHandler & ((row: TRowData) => void)) | undefined) => () => void; handleWrapperClick: MouseEventHandler; }; export {};