import { ProjectModel } from './project'; export declare class WorkspaceModel { project: ProjectModel; branch: string; name: string; namespace: string; relative_folder: string; folder: string; git: string; docker_compose: string; env_default_file: string; env_file: string; constructor(project: ProjectModel, branch: string); }