/**
 * Insert item into array if not already present.
 */
declare function insert(arr: any, ...restItems: any[]): any;
export default insert;
