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