import { Predicate } from "@tsplus/stdlib/data/Predicate"; import { Chunk } from "@tsplus/stdlib/collections/Chunk/definition"; /** * Splits this chunk on the first element that matches this predicate. * @tsplus static Chunk.Aspects splitWhere * @tsplus pipeable Chunk splitWhere * @tsplus location "@tsplus/stdlib/collections/Chunk/operations/splitWhere" */ export declare function splitWhere(f: Predicate): (self: Chunk) => readonly [Chunk, Chunk]; //# sourceMappingURL=splitWhere.d.ts.map