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