import { PlywoodValue } from '../datatypes';
import { SQLDialect } from '../dialect/baseDialect';
import { ChainableExpression, ExpressionJS, ExpressionValue } from './baseExpression';
export declare class CustomAggregateExpression extends ChainableExpression {
    static op: string;
    static fromJS(parameters: ExpressionJS): CustomAggregateExpression;
    custom: string;
    constructor(parameters: ExpressionValue);
    valueOf(): ExpressionValue;
    toJS(): ExpressionJS;
    equals(other: CustomAggregateExpression | undefined): boolean;
    protected _toStringParameters(_indent?: int): string[];
    protected _calcChainableHelper(_operandValue: any): PlywoodValue;
    protected _getSQLChainableHelper(_dialect: SQLDialect, _operandSQL: string): string;
}
//# sourceMappingURL=customAggregateExpression.d.ts.map