export declare function find<P>(list: P[], predicate: (value: P, i: number, list: P[]) => boolean): P | undefined;
export declare function includes<P>(list: P[], searchElement: any): boolean;
