import { Developer } from '../../developers/entities/developer.entity.js';
export declare enum ProjectStatus {
    PLANNED = "PLANNED",
    IN_PROGRESS = "IN_PROGRESS",
    ON_HOLD = "ON_HOLD",
    COMPLETED = "COMPLETED",
    CANCELLED = "CANCELLED"
}
export declare class Project {
    id: string;
    companyId: string;
    projectName: string;
    projectType: string;
    totalValue: string;
    status: ProjectStatus;
    startDate: string;
    deadline: string;
    description: string;
    createdAt: Date;
    updatedAt: Date;
    deletedAt: Date;
    developers: Developer[];
}
