import * as momentNs from 'moment'; /** * Created by vgellerman on 2/17/2017. */ export declare class ReferenceData { id: string; correlationId: { correlation: string; }; code: string; description: string; shortDescription: string; effectiveFrom: momentNs.Moment; effectiveUntil: momentNs.Moment; version: number; revisionId: string; deleted: boolean; createdDate: momentNs.Moment; createdBy: string; lastModifiedDate: momentNs.Moment; lastModifiedBy: string; constructor(data: any); readonly modified: boolean; readonly label: string; readonly value: { correlation: string; }; }