import { Selection } from './selection_parsing'; 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): Selection; export declare function parseMinSelection(f: Function): Selection; export declare function parseAverageSelection(f: Function): Selection; export declare function parseSumSelection(f: Function): Selection;