import { RefinementWithIndex, PredicateWithIndex } from "@tsplus/stdlib/utilities/Types"; import { Chunk } from "@tsplus/stdlib/collections/Chunk/definition"; /** * Returns a filtered subset of this chunk. * @tsplus static Chunk.Aspects filterWithIndex * @tsplus pipeable Chunk filterWithIndex * @tsplus location "@tsplus/stdlib/collections/Chunk/operations/filterWithIndex" */ export declare function filterWithIndex(f: RefinementWithIndex): (self: Chunk) => Chunk; export declare function filterWithIndex(f: PredicateWithIndex): (self: Chunk) => Chunk; //# sourceMappingURL=filterWithIndex.d.ts.map