import { PipeTransform } from '@angular/core'; import { Moment } from 'moment'; export declare class MomentDatePipe implements PipeTransform { static DEFAULT_FORMAT: string; static parseMoment(value: Date | Moment | string, format?: string): Moment; static fromNow(value: Date | Moment, format?: string): string; static toConditionValue(value: string | Date): string; transform(value: Date | Moment, format?: string): string; }