import { ProjectDeployService } from './deploy/ProjectDeployService'; import { ModuleManager } from './orchestrator/moduleManager'; import { ProjectManager } from './orchestrator/projectManager'; export interface CreateStudioHostOptions { readonly workspaceRoot: string; } export declare function createStudioHost(options: CreateStudioHostOptions): { workspaceRoot: string; projectManager: ProjectManager; moduleManager: ModuleManager; projectDeployService: ProjectDeployService; close(): Promise; }; export type StudioHost = ReturnType; //# sourceMappingURL=createStudioHost.d.ts.map