import { PipeTransform } from '@angular/core';
import * as i0 from "@angular/core";
/**
 * Returns an array of {key: number, value: string} objects.
 * Most useful in *ngFor iterations
 *
 * @example
 * <div *ngFor="let item of someEnum | enum></div>
 *
 */
export declare class EnumPipe implements PipeTransform {
    transform(value: any): Array<{
        key: number;
        value: string;
    }>;
    static ɵfac: i0.ɵɵFactoryDeclaration<EnumPipe, never>;
    static ɵpipe: i0.ɵɵPipeDeclaration<EnumPipe, "jpEnum", false>;
}
//# sourceMappingURL=enum.pipe.d.ts.map