/**
 * @description:
 * @param {*} T
 * @return { Array<T> }
 */
export declare const dedupe: <T>(array: T[], key: keyof T) => T[];
