import { Equivalence } from "@tsplus/stdlib/prelude/Equivalence/definition"; import { Chunk } from "@tsplus/stdlib/collections/Chunk/definition"; /** * Creates an array of array values not included in the other given array using * an `Equivalence` for equality comparisons. The order and references of * result values are determined by the first array. * @tsplus static Chunk.Aspects difference * @tsplus pipeable Chunk difference * @tsplus location "@tsplus/stdlib/collections/Chunk/operations/difference" */ export declare function difference(E: Equivalence, that: Chunk): (self: Chunk) => Chunk; //# sourceMappingURL=difference.d.ts.map