import { Result } from "neverthrow"; import { FxError } from "../error"; export interface TreeItem { commandId: string; label: string; callback?: (args: any) => Promise>; parent?: TreeCategory | string; contextValue?: string; icon?: string; subTreeItems?: TreeItem[]; tooltip?: { value: string; isMarkdown: boolean; }; description?: string; isCustom?: boolean; expanded?: boolean; } export interface TreeProvider { refresh: (tree: TreeItem[]) => Promise>; add: (tree: TreeItem[]) => Promise>; remove: (tree: TreeItem[]) => Promise>; } export declare enum TreeCategory { GettingStarted = 0, Account = 1, Feedback = 2, Project = 3, Provision = 4, Environment = 5 } //# sourceMappingURL=tree.d.ts.map