import AbstractNode from './AbstractNode';
import AggregateFunctionNode from './aggregateNodes/AggregateFunctionNode';
export default class Select extends AbstractNode {
    readonly name = "select";
    private _fields;
    constructor(fields: (string | AggregateFunctionNode)[]);
    get fields(): (string | AggregateFunctionNode)[];
    set fields(value: (string | AggregateFunctionNode)[]);
}
