import { Sequence } from "../../sequency"; export declare class Partition { /** * Evaluates the given `predicate` for each element of the sequence and assorts each element into one of two lists * according to the result of the predicate. Returns both lists as an object. * * @param {(value: T) => boolean} predicate * @returns {{true: T[]; false: T[]}} */ partition(this: Sequence, predicate: (value: T) => boolean): { true: T[]; false: T[]; }; }