/** * Creates a new array concatenating `array` with any additional arrays and/or values. * * Contribution to minified bundle size, when it is the only function imported: * - Lodash: 1,410 bytes * - Micro-dash: 7 bytes */ export declare function concat(array: T[], ...values: Array): T[];