/** * Returns a new flat array */ declare const flatten: (arr: any[]) => any; export default flatten;