export declare class UpsertImageDto {
    title: string;
    img: string;
}
export declare class UpsertCompanyInfoDto {
    title: string;
    details: string;
}
export declare class UpsertTechnologyGroupDto {
    title: string;
    techs: string[];
}
export declare class UpsertProjectDetailDto {
    details: string;
}
export declare class UpsertProjectDto {
    title: string;
    url: string;
    category: string;
    thumbnailImg: string;
    headerPublishDate: string;
    headerTags: string;
    clientHeading: string;
    objectivesHeading: string;
    objectivesDetails: string;
    projectDetailsHeading: string;
    socialSharingHeading?: string;
    images: UpsertImageDto[];
    companyInfo: UpsertCompanyInfoDto[];
    technologies: UpsertTechnologyGroupDto[];
    details: UpsertProjectDetailDto[];
}
