export declare type TreeNodeType = "directory" | "file"; export declare type TreeNode = { [x in K]: T[K]; } & { type: TreeNodeType; uri: string; expanded?: boolean; children?: TreeNode[]; };