export declare type Predicator = (o: T) => boolean; export declare type Comparator = (o1: T, o2: T) => number; export declare type Func = (o: TI) => TO; export declare const identity: (o: any) => any;