import { PipeTransform } from '@angular/core'; import { TranslateService } from '@ngx-translate/core'; export interface PluralMap { [zero: string]: string; one: string; two: string; few: string; many: string; other: string; } export declare class PluralPipe implements PipeTransform { private translateService; constructor(translateService: TranslateService); transform(count: number, pluralMap: PluralMap): string; }