import { PipeTransform } from '@angular/core'; import * as i0 from "@angular/core"; export declare class SearchPipe implements PipeTransform { /** * The function takes in two arguments, the first is the array of objects that you want to filter, * the second is the search term. The function then loops through the array and returns a new array * with only the objects that contain the search term in any of their properties * @param {any} value - The array to be filtered. * @param {any} [args] - The search text. * @returns The filter method returns boolean value if the search term is present then true else false. */ transform(value: any, args?: any): any; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵpipe: i0.ɵɵPipeDeclaration; }