import { PipeTransform } from '@angular/core'; export declare class Entry { key: string; value: string; constructor(key: string, value: string); } /** * Creates an array of entries from the given map */ export declare function createEntryArray(labels: Map): Array; export declare class EntriesPipe implements PipeTransform { transform(value: any): Object[]; }