import { Equivalence } from "@tsplus/stdlib/prelude/Equivalence/definition"; import { Chunk } from "@tsplus/stdlib/collections/Chunk/definition"; /** * Test if a value is a member of an array. Takes a `Equivalence` as a single * argument which returns the function to use to search for a value of type `A` * in an array of type `Chunk`. * @tsplus static Chunk.Aspects elem * @tsplus pipeable Chunk elem * @tsplus location "@tsplus/stdlib/collections/Chunk/operations/elem" */ export declare function elem(E: Equivalence, value: A): (self: Chunk) => boolean; //# sourceMappingURL=elem.d.ts.map