import { M as Maybe } from './Maybe-58ee2d71.js'; /** * Creates an array with all falsey values removed. * The values `false`, `null`, `0`, `""`, `undefined`, and `NaN` are falsey. * @param array The array to compact. * @returns The new array of filtered values. */ declare function compact(array: Maybe): T[]; export { compact as c };