export type Comparator = (value: T, searchedValue: T) => boolean; export declare function differenceWith(array: T[], exclude: T[], comparator: Comparator): T[];