/**
 * Remove duplicate item in array.
 *
 * @throws {TypeError} Throws an type error if the 'array' argument is not array type.
 */
export declare const distincter: (array: any[]) => any[];
