import { PredicateWithIndex } from "@tsplus/stdlib/utilities/Types"; import { Chunk } from "@tsplus/stdlib/collections/Chunk/definition"; /** * Separate elements based on a predicate that also exposes the index of the * element. * @tsplus static Chunk.Aspects partitionWithIndex * @tsplus pipeable Chunk partitionWithIndex * @tsplus location "@tsplus/stdlib/collections/Chunk/operations/partitionWithIndex" */ export declare function partitionWithIndex(f: PredicateWithIndex): (self: Chunk) => readonly [Chunk, Chunk]; //# sourceMappingURL=partitionWithIndex.d.ts.map