import { CompositeElementType } from './composite-element-types.model'; import { PipChecklistElement } from './checklist-element.model'; export declare class PipCompositeElement { type: CompositeElementType; text?: string; documents?: any[]; pictures?: any[]; location?: any; locationName?: string; startDate?: Date; endDate?: Date; elements?: PipChecklistElement[]; }