import { PipeTransform } from "@angular/core";
import * as i0 from "@angular/core";
/**
 * Iterate over {key: value}
 * Returns the keys of the object
 * Usage:
 *    let objKey of obj | ObjNgFor
 * Example:
 *    let obj = {a: 1, b: 2};
 *    *ngFor="let key of obj | ObjNgFor"
 *    {{keys}}: {{obj[key]}}
 */
export declare class ObjNgFor implements PipeTransform {
    transform(value: any, args?: any[]): any;
    static ɵfac: i0.ɵɵFactoryDeclaration<ObjNgFor, never>;
    static ɵpipe: i0.ɵɵPipeDeclaration<ObjNgFor, "ObjNgFor">;
}
