import { Predicate } from "@tsplus/stdlib/data/Predicate";
import { List } from "@tsplus/stdlib/collections/List/definition";
/**
* Separate elements based on a predicate.
* @tsplus static List.Aspects partition
* @tsplus pipeable List partition
* @tsplus location "@tsplus/stdlib/collections/List/partition"
*/
export declare function partition(f: Predicate): (self: List) => readonly [List, List];
//# sourceMappingURL=partition.d.ts.map