import { Maybe } from "@tsplus/stdlib/data/Maybe/definition"; import { Chunk } from "@tsplus/stdlib/collections/Chunk/definition"; /** * Returns a filtered, mapped subset of the elements of this chunk. * @tsplus static Chunk.Aspects collect * @tsplus pipeable Chunk collect * @tsplus location "@tsplus/stdlib/collections/Chunk/operations/collect" */ export declare function collect(f: (a: A) => Maybe): (self: Chunk) => Chunk; //# sourceMappingURL=collect.d.ts.map