declare function uniqWith<T>(array: T[] | null | undefined, comparator?: (a: T, b: T) => boolean): T[];

export { uniqWith as default, uniqWith };
