/** Angular2 */ import { PipeTransform } from "@angular/core"; import { DateTimeType } from "cmf.core/src/domain/extensions/formatter"; import moment from "moment"; export declare class TimeDifference implements PipeTransform { /** * Given a moment and a format returns a string with he formated date * @param value time instant moment object * @param recvFormatType Format type - can be 'DateTime', 'Date', 'Time' */ getValue(value: moment.Moment, recvFormatType: DateTimeType | string, culture?: string): string; /** * @value Enum value */ transform(value: moment.Moment, args: string[]): any; } export declare class TimeDifferenceModule { }