export declare class ProjectHeaderDto {
    title: string;
    publishDate: string;
    tags: string;
}
export declare class ProjectImageDto {
    id: number;
    title: string;
    img: string;
}
export declare class CompanyInfoItemDto {
    id: number;
    title: string;
    details: string;
}
export declare class TechnologyGroupDto {
    title: string;
    techs: string[];
}
export declare class ProjectDetailItemDto {
    id: number;
    details: string;
}
export declare class ProjectInfoDto {
    ClientHeading: string;
    CompanyInfo: CompanyInfoItemDto[];
    ObjectivesHeading: string;
    ObjectivesDetails: string;
    Technologies: TechnologyGroupDto[];
    ProjectDetailsHeading: string;
    ProjectDetails: ProjectDetailItemDto[];
    SocialSharingHeading: string;
}
export declare class ProjectDetailDto {
    id: number;
    title: string;
    url: string;
    category: string;
    img: string;
    ProjectHeader: ProjectHeaderDto;
    ProjectImages: ProjectImageDto[];
    ProjectInfo: ProjectInfoDto;
}
