export declare function find(func: (item: any) => boolean, list: any[]): any;
export declare const filter: (func: (item: any, index: number, collection: any[]) => boolean, list: any[]) => any[];
export declare const sort: (func: (a: any, b: any) => number, list: any[]) => any[];