import { AggregationComputer, AggregationGroupComputer, IValue, _ISelection, _IType, _Transaction } from '../../interfaces-private'; import { ExprCall } from 'pgsql-ast-parser'; declare class SumExpr implements AggregationComputer { private exp; constructor(exp: IValue); get type(): _IType; createGroup(t: _Transaction): AggregationGroupComputer; } export declare function buildSum(this: void, base: _ISelection, call: ExprCall): SumExpr; export {}; //# sourceMappingURL=sum.d.ts.map