import { ProjectStatus } from '../entities/project.entity.js';
export declare class CreateProjectDto {
    projectName: string;
    projectType: string;
    totalValue: number;
    status?: ProjectStatus;
    startDate?: string;
    deadline?: string;
    description?: string;
    developerIds?: string[];
}
