import { PipeTransform } from '@angular/core'; import * as i0 from "@angular/core"; export declare class IsEmptyPipe implements PipeTransform { /** * Check if is value is empty. * @param value * @returns True for: * - null * - undefined * - Array if Array.length === 0 * - String if string.length === 0 * - Object with no keys * - (Set | Map).size === 0 * otherwise false. */ transform(value: Array | Object | string | Set | Map): boolean; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵpipe: i0.ɵɵPipeDeclaration; }