/** * Returns an array that contains all of the elements of this array that are * not `null` or `undefined`. * * @returns A new array with the results */ export declare const compact: (arr: readonly T[]) => Array>;