export declare class Project { name: string; aspects: ProjectAspect[]; constructor(name: string); } export interface ProjectAspect { }