import { AggregationFunction } from '../aggregation/aggregate_column_parsing'; import { SingleColumnSelection } from './single_column_selection_parsing'; export declare function parseAggregateColumnSelection(f: Function, aggregationFunction: AggregationFunction): SingleColumnSelection; export declare function parseMaxSelection(f: Function): SingleColumnSelection; export declare function parseMinSelection(f: Function): SingleColumnSelection; export declare function parseAverageSelection(f: Function): SingleColumnSelection; export declare function parseSumSelection(f: Function): SingleColumnSelection;