type EqFn<T> = (left: T, right: T) => boolean;
export declare function nubBy<T>(items: T[] | unknown, eq?: EqFn<T>): T[];
export {};
