import { type DisabledItemValue } from '../../TreeList/types'; type FormatDisableItem = { id: string; disableReason?: string; }; export declare const getFormatDisabledItems: (disabledItems: DisabledItemValue[] | null | undefined) => FormatDisableItem[]; export {};