import { Either } from "@tsplus/stdlib/data/Either/definition"; import { List } from "@tsplus/stdlib/collections/List/definition"; /** * Partitions the elements of this List into two Lists using the specified * function. * @tsplus static List.Aspects partitionMap * @tsplus pipeable List partitionMap * @tsplus location "@tsplus/stdlib/collections/List/partitionMap" */ export declare function partitionMap(f: (a: A) => Either): (self: List) => readonly [List, List]; //# sourceMappingURL=partitionMap.d.ts.map