/**
* Map to Iteratble Pipe
*
* Example:
*
*
* key {{keyValuePair.key}} and value {{keyValuePair.value}}
*
*
* Concepts from:
* http://stackoverflow.com/questions/31490713/iterate-over-typescript-dictionary-in-angular-2
* https://webcake.co/object-properties-in-angular-2s-ngfor/
*
* See: https://github.com/angular/angular/issues/2246
*
*/
export declare class IterableMapPipe {
transform(map: any): any[];
}