import { ProjectImage } from './project-image.entity';
import { ProjectCompanyInfo } from './project-company-info.entity';
import { ProjectTechnology } from './project-technology.entity';
import { ProjectDetail } from './project-detail.entity';
export declare class Project {
    id: number;
    url: string;
    title: string;
    category: string;
    thumbnailImg: string;
    headerPublishDate: string;
    headerTags: string;
    clientHeading: string;
    objectivesHeading: string;
    objectivesDetails: string;
    projectDetailsHeading: string;
    socialSharingHeading: string;
    createdAt: Date;
    images: ProjectImage[];
    companyInfo: ProjectCompanyInfo[];
    technologies: ProjectTechnology[];
    details: ProjectDetail[];
}
