export declare type SimpleMapDelegate<T, V = unknown> = (item: T) => V;
export declare type MapDelegate<T, V = unknown> = (item: T, index: number) => V;
export declare type GroupingDelegate<T, K> = (item: T, index: number, keys: K[]) => K;
