import type { TreeViewItem } from '../types.js'; /** * Determines the check state of an item based on its children's states using selectedIds * * Provides visual feedback about a folder's state when it contains a mix * of checked and unchecked items, improving user understanding of the hierarchy */ export declare function getCheckStateFromSelectedIds(item: TreeViewItem, selectedIds: Set): 'checked' | 'unchecked' | 'indeterminate'; //# sourceMappingURL=getCheckStateFromSelectedIds.d.ts.map