export declare function contains<A>(el: A, coll: A[]): boolean;
export declare function contains<A>(el: A): (coll: A[]) => boolean;
export declare function contains(part: string, full: string): boolean;
export declare function contains(part: string): (full: string) => boolean;
