export type Comparator = (value: T, searchedValue: T) => boolean; export declare function intersectionWith(arrays: T[][], comparator: Comparator): T[];