import { PipeTransform } from "@angular/core"; import * as i0 from "@angular/core"; export declare class GroupByPipe implements PipeTransform { /** * Groups collection of items by property selector * * @param items Collection of items * @param key Property selector or property name * @returns Collection of grouped items, see {@link Group} for more details */ transform(items: T[], key: TKey): Group[]; transform(items: T[], key: (item: T) => TKey): Group[]; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵpipe: i0.ɵɵPipeDeclaration; }