/** * Creates an array of values from the first array not included in the other given arrays. * * @example * difference([2, 1], [2, 3]) // [1] */ export declare function difference(first: readonly T[], ...others: (readonly T[])[]): T[];