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