///
import type { TreeListItemValue, TreeListProps } from '../types';
type UseLogicParams = TreeListProps;
export declare const useLogic: ({ value, data, disabledItems, isObjectMode, }: UseLogicParams) => {
listProps: {
ref: import("react").RefObject;
};
itemProps: {
chainToSelectedItem: string[];
disabledItems: {
id: string;
disableReason?: string | undefined;
}[];
prefixId: string | undefined;
};
};
export {};