import * as moment from 'moment'; import { PipeTransform } from '@angular/core'; import { NgxMomentOptions } from './moment-options'; export declare class DurationPipe implements PipeTransform { allowedUnits: Array; constructor(momentOptions?: NgxMomentOptions); transform(value: moment.DurationInputArg1, ...args: string[]): string; private _applyOptions; }