import { AggregateColumn } from './aggregate_column_parsing'; import { CountOperation } from '../count_operation_parsing'; export declare type TableAggregationOperation = AggregateColumn | CountOperation; export declare function createTableAggregationOperationParser(objectParameterNames: string[], countParameter: string | null): any;