import { PipeTransform } from '@angular/core'; export declare class SortByPipe implements PipeTransform { /** * compares value by value and brings it to alphabetical order */ transform(array: Array, args: string): Array; }