export declare class ApiProjectAreaWorkPackage { readonly id: number; readonly projectAreaId: number; readonly projectWorkPackageId: number; readonly workPackageId: number; status: string; expectedStart: string; expectedCompletion: string; start: string; completion: string; constructor({ id, projectAreaId, projectWorkPackageId, workPackageId, status, expectedStart, expectedCompletion, start, completion }: Partial); } export default ApiProjectAreaWorkPackage;