/** * Creates an array of array values not included in the other given arrays. The order and references of result values are determined by the first array. * * Contribution to minified bundle size, when it is the only function imported: * - Lodash: 6,258 bytes * - Micro-dash: 249 bytes */ export declare function difference(array: T[], ...values: T[][]): T[];