import { PipeBody } from "../../pipables"; import type { LinqWrapper } from "../linqWrapper"; export type AggregateAccumulator = (accumulate: TAccumulate, element: T) => TAccumulate; export declare function aggregate(seed: TAccumulate, accumulator: AggregateAccumulator): PipeBody, TAccumulate>; export declare function aggregate(accumulator: AggregateAccumulator): PipeBody, T>; //# sourceMappingURL=aggregate.d.ts.map