import { PipeTransform } from "@angular/core"; import * as i0 from "@angular/core"; export declare class MapPipe implements PipeTransform { /** * Maps item or collection of items with specified formatter * * @param value Item or collection of items * @param property Item property or formatter * @returns Mapped item or collection of items */ transform(value: T, property: TKey): T[TKey]; transform(value: T[], property: TKey): T[TKey][]; transform(value: T[], formatter: (value: T) => TResult): TResult[]; transform(value: T, formatter: (value: T) => TResult): TResult; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵpipe: i0.ɵɵPipeDeclaration; }