/** * Flattens `array` a single level deep. * * Contribution to minified bundle size, when it is the only function imported: * - Lodash: 1,183 bytes * - Micro-dash: 26 bytes */ export declare function flatten(array: Array): T[];