export declare type SimpleMapDelegate<T, V = unknown> = (item: T) => V;
export declare type MapDelegate<T, V = unknown> = (item: T, index: number) => V;
