/**
 * Remove all null/undefined items from array.
 */
declare function compact(arr: any): any[];
export default compact;
