import { Project } from "./project"; export interface Directory { name: string; entries: Entry[]; } export declare type Entry = Directory | Project; export declare class Workspace implements Directory { name: string; entries: Entry[]; path: string; constructor(name: string, directory?: string); }