export declare const enum ProjectInitPhases { Details = "PROJECT_DETAILS", LinkTechnology = "LINK_TECHNOLOGY", HomeProducer = "HOME_PRODUCER", ConstructionResourseManagment = "CONSTRUCTION_RESOURCE_MANAGEMENT", Schedule = "SCHEDULE" } export declare const enum ProjectInitPhaseIndex { Details = 0, LinkTechnology = 1, HomeProducer = 2, ConstructionResourseManagment = 3 } export interface ProjectDetailsPhase { readonly id: string; readonly type: ProjectInitPhases.Details; readonly address: ProjectDetailsAddress; readonly jdescription: string; } export interface ProjectDetailsAddress { readonly address: string; readonly mapsLink: string; readonly addressGps: ProjectCoordinates; readonly polygonGPSCoordinate: ProjectCoordinates[]; } export interface ProjectCoordinates { readonly x: number; readonly y: number; }