import { ViewSection } from '../ViewSection.js'; import { TreeItem } from '../ViewItem.js'; /** * Abstract representation of a view section containing a tree */ export declare abstract class TreeSection extends ViewSection { openItem(...path: string[]): Promise; abstract findItem(label: string, maxLevel?: number): Promise; abstract getVisibleItems(): Promise; } //# sourceMappingURL=TreeSection.d.ts.map