/** Core */ import { Generic } from "cmf.core/src/core"; /** Angular2 */ import { PipeTransform } from "@angular/core"; import moment from "moment"; /** Nested components*/ import { EntityTypePropertyValueType as SimpleType } from "cmf.core/src/domain/extensions/caches/entityType"; export { SimpleType }; export declare class ConvertTimeDifference extends Generic implements PipeTransform { /** * Given a moment returns an adequate representation of the time difference from the current dateTime (now) * @param value Plain or complex value to convert */ getValue(value: moment.Moment): string; transform(value: any, args: string[]): any; } export declare class ConvertTimeDifferenceModule { }