import { Predicate } from "@tsplus/stdlib/data/Predicate"; import { Chunk } from "@tsplus/stdlib/collections/Chunk/definition"; /** * Determines whether a predicate is satisfied for at least one element of this * chunk. * @tsplus static Chunk.Aspects exists * @tsplus pipeable Chunk exists * @tsplus location "@tsplus/stdlib/collections/Chunk/operations/exists" */ export declare function exists(f: Predicate): (self: Chunk) => boolean; //# sourceMappingURL=exists.d.ts.map