import type * as Tp from "../../Tuple/index.js"; import type * as Chunk from "../core.js"; /** * Splits this chunk on the first element that matches this predicate. */ export declare function splitWhere_(self: Chunk.Chunk, f: (a: A) => boolean): Tp.Tuple<[Chunk.Chunk, Chunk.Chunk]>; /** * Splits this chunk on the first element that matches this predicate. * * @ets_data_first splitWhere_ */ export declare function splitWhere(f: (a: A) => boolean): (self: Chunk.Chunk) => Tp.Tuple<[Chunk.Chunk, Chunk.Chunk]>; //# sourceMappingURL=splitWhere.d.ts.map