import { PipeTransform } from '@angular/core'; import { CoreResource } from '@mtna/pojo-consumer-ui'; /** * Determines if a resource exists in a list. * Length is the first argument so that the pipe will re-run anytime the list changes. * * @param id the identifier of the resource * @param resources the array of resources to check */ export declare class RdsCoreResourceExistsPipe implements PipeTransform { transform(length: number, id: string, resources: Array): boolean; } export declare class RdsCoreResourceExistsPipeModule { }