import { PipeTransform } from "@angular/core"; export declare class SortAlphabetic implements PipeTransform { constructor(); /** * Pipe's transform method in which given an array of strings, will sort it alphabetically by its args. * @param array * @param args */ transform(array: Array, args: string): Array; } export declare class SortAlphabeticModule { }