import { ReduceArguments } from "./reduceify"; export declare function arrPartition(arr: readonly ArrOf[], matcher: (entry: ArrOf) => entry is U): [U[], Exclude[]]; export declare function arrPartition(arr: readonly ArrOf[], matcher: (entry: ArrOf) => boolean): [ArrOf[], ArrOf[]]; export declare function partition(matcher: (entry: ArrOf) => entry is U): ReduceArguments[]]>; export declare function partition(matcher: (entry: ArrOf) => boolean): ReduceArguments;