import { Maybe } from "@tsplus/stdlib/data/Maybe/definition"; import { ImmutableArray } from "@tsplus/stdlib/collections/ImmutableArray/definition"; /** * Filters the `ImmutableArray` and maps the output using the specified * function. * @tsplus static ImmutableArray.Aspects collect * @tsplus pipeable ImmutableArray collect * @tsplus location "@tsplus/stdlib/collections/ImmutableArray/collect" */ export declare function collect(f: (a: A) => Maybe): (self: ImmutableArray) => ImmutableArray; //# sourceMappingURL=collect.d.ts.map