/** * Utilities for working the data model. */ import * as Model from "./DataModel"; export * from "./time"; export declare const formattedValuePostfix = "@OData.Community.Display.V1.FormattedValue"; /** Convert an attribute name to one with a OData formatted value. */ export declare function toFVName(name: string): string; /** * Copies object and adds DateStr attributse if corresponding Model.Audit attributes exist. */ export declare function enhanceAudit(audit: T, format?: string): T & Model.DateStr;