import { Maybe } from "@tsplus/stdlib/data/Maybe/definition"; import { ImmutableMap } from "@tsplus/stdlib/collections/ImmutableMap/definition"; /** * Applies the specified partial function to each entry of the map, filtering * out `None` values. * @tsplus static ImmutableMap.Aspects filterMapWithIndex * @tsplus pipeable ImmutableMap filterMapWithIndex * @tsplus location "@tsplus/stdlib/collections/ImmutableMap/filterMapWithIndex" */ export declare function filterMapWithIndex(pf: (key: K, value: V) => Maybe): (self: ImmutableMap) => ImmutableMap; //# sourceMappingURL=filterMapWithIndex.d.ts.map